3rd Party Library 抛出 NoClassDefFoundError 而不给出类名

发布于 2024-09-13 01:47:44 字数 205 浏览 6 评论 0原文

我正在尝试将第三方库集成到现有应用程序中;它编译和构建没有问题,但在执行过程中给出了java.lang.NoClassDefFoundError

问题是错误来自我没有源代码的库,并且错误没有告诉我找不到哪个类。

这个可以调试吗?有什么建议吗?

(这是 Java 1.4、Eclipse、Ant 和 Tomcat 设置)

I'm trying to integrate a 3rd party library into an existing application; it compiles and builds with no problems, but during execution gives a java.lang.NoClassDefFoundError.

The problem is that the error comes out of the library to which I don't have the source, and the error doesn't tell me what class couldn't be found.

Is it possible to debug this? Any advice?

(It's a Java 1.4, Eclipse, Ant and Tomcat set-up)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

怪我入戏太深 2024-09-20 01:47:44

您可以安装 JD-Eclipse (或任何其他反编译器),启动调试器,然后逐步执行,直到找到错误。

该插件应该允许您进入第三方 .class 文件,就好像它们是附加源一样(假设它们没有被混淆)。

You can install JD-Eclipse (or any other decompiler), fire up your debugger, and step through until you find the error.

The plugin should allow you to step into the third party .class files as if they were attached source (assuming they're not obfuscated).

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