如何使用 eclipse 调试器调试 JSF 核心库的堆栈跟踪?

发布于 2024-07-09 08:54:36 字数 148 浏览 7 评论 0原文

欢迎 我正在扩展一些用 Sprint 和 JSF 编写的应用程序。 我的部分工作是编写 xml 配置文件。 经过一些更改后,我收到了库生成器的报告。

我可以使用 Eclipse 调试器附加的 jar 进行访问并查找什么方法会引发错误(以及原因)吗?

Welcome
I am extending some application written with Sprint and JSF. My work is partly writing xml config files. After some changes I got reports from library generators.

Can I access with Eclipse debugger attached jars and fount what method throws error (and why) ?

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

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

发布评论

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

评论(1

叫嚣ゝ 2024-07-16 08:54:36

您可能想重新表述一下您在这里所要求的内容。

当然,您可以将 Eclipse 调试器附加到该应用程序。 不过,您需要在调试模式下运行它。 您需要将一些参数传递给 JVM。 您

java -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,address=127.0.0.1 ..

可能还希望将 Eclipse 指向源 jar,以便您可以单步执行代码。 但既然你谈论的是配置文件,我宁愿先检查日志。

You might want to rephrase what you are asking for here.

Of course you can attach with the Eclipse debugger to that application. You will need to run it in debug mode though. You will need to pass in some parameters to the JVM. Something like

java -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,address=127.0.0.1 ..

You might also want to point Eclipse to the source jars so you can step through the code. But since you are talking about config files I would rather check the logs first.

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