Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
欢迎我正在扩展一些用 Sprint 和 JSF 编写的应用程序。我的工作部分是编写 xml 配置文件。经过一些更改后,我从库生成器中获得了报告。
我可以使用 Eclipse 调试器附加的 jar 访问并找到什么方法抛出错误(以及为什么)?
您可能想在此处重新表述您所要求的内容。
当然,您可以将 Eclipse 调试器附加到该应用程序。不过,您需要在调试模式下运行它。您需要将一些参数传递给 JVM。就像是
java -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,address=127.0.0.1 ..
您可能还希望将 Eclipse 指向源 jar,以便您可以单步执行代码。但既然你在谈论配置文件,我宁愿先检查日志。