Java Web服务在测试时无法启动

发布于 2024-11-02 22:35:35 字数 389 浏览 1 评论 0原文

嘿,我正在尝试制作一个简单的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

╰◇生如夏花灿烂 2024-11-09 22:35:35

该消息意味着您有两个不同版本的“ASM”库:一个用于编译,另一个安装在服务器中。确保您在服务器中使用与您正在开发的版本相同的版本!

据我所知,他们将该库分发到名为 asm-3.0.jarasm-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 and asm-util-3.0.jar, so that's what you need to search for.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文