Java Web服务在测试时无法启动
嘿,我正在尝试制作一个简单的 RESTful Web 服务,当我部署时,我收到此错误:
SEVERE: org.objectweb.asm.ClassWriter.<init>(Z)V
java.lang.NoSuchMethodError: org.objectweb.asm.ClassWriter.<init>(Z)V
我正在使用 Netbeans 6.8。我正在尝试遵循本指南: http://netbeans.org/kb/docs/websvc/rest.html
有什么想法吗?感谢您抽出时间。
Hey Im trying to make a simple RESTful web service and when I deploy i get this error:
SEVERE: org.objectweb.asm.ClassWriter.<init>(Z)V
java.lang.NoSuchMethodError: org.objectweb.asm.ClassWriter.<init>(Z)V
Im using Netbeans 6.8. Im trying to follow this guide:
http://netbeans.org/kb/docs/websvc/rest.html
Any idea? Thanks for your time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该消息意味着您有两个不同版本的“ASM”库:一个用于编译,另一个安装在服务器中。确保您在服务器中使用与您正在开发的版本相同的版本!
据我所知,他们将该库分发到名为
asm-3.0.jar
和asm-util-3.0.jar
的 jar 中,因此这就是您需要搜索的内容。That message means you have two different versions of the "ASM" library: one you're using to compile against, and one that's installed in the server. Make sure you use the same version in the server as you're developing with!
The last I knew, they distributed this library in jars with names like
asm-3.0.jar
andasm-util-3.0.jar
, so that's what you need to search for.