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.
我正在部署在 jboss 服务器上的 tibco 进程中执行一些 jar 文件。所以我的问题是,如果有任何 jar 文件出错,我怎么知道 jar 文件的哪一行或方法出错了?
您的问题非常含糊,但一般来说,Java 中的错误是使用异常处理的,因此您应该查看日志文件中的堆栈跟踪,该堆栈跟踪将为您提供有关错误发生位置的所有类和行信息。
如果 jar 附加了源代码,那么您可以准确找出错误所在。
JAR 本身具有异常处理设置,然后打印错误消息。