码迷,mamicode.com
首页 > Web开发 > 详细

使用aspectjweaver时报“agent library failed to init: instrument”“Error opening zip file or JAR manifest m

时间:2014-07-16 17:19:11      阅读:718      评论:0      收藏:0      [点我收藏+]

标签:style   http   java   color   使用   io   

这个只是个小经验,我至今不知道为什么。今天在Ant的build.xml中增加Kieker的监控时,好几次都碰到这个问题,感觉很莫名其妙:

一般报错类似于这个:

Error occurred during initialization of VM

agent library failed to init: instrument

Error opening zip file or JAR manifest missing : lib/aspectjweaver-1.6.11.jar

这时候对应的build.xml里的写法是:

<jvmarg value="-javaagent:lib/aspectjweaver-1.6.11.jar"/>

一直百思不得其解为什么会找不到这个jar包,结果发现改成类似这样的配置就可以了:

<property name="main.aspectj.jar" location="lib/aspectjweaver-1.6.11.jar"/>
...
<jvmarg value="-javaagent:${main.aspectj.jar}"/>

这两种写法在我看来是一样,不知道为什么前者不行。一点小经验,相信其他朋友也会遇到,所以总结一下。

使用aspectjweaver时报“agent library failed to init: instrument”“Error opening zip file or JAR manifest m,布布扣,bubuko.com

使用aspectjweaver时报“agent library failed to init: instrument”“Error opening zip file or JAR manifest m

标签:style   http   java   color   使用   io   

原文地址:http://blog.csdn.net/qysh123/article/details/37846095

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!