在jboss中运行时如何知道jar文件的哪一行出错?
我正在 jboss 服务器上部署的 tibco 进程中执行一些 jar 文件。所以我的问题是,如果任何 jar 文件出错,我如何知道 jar 文件的哪一行或哪一个方法出错了?
i am executing some jar file in my tibco process deployed on jboss server. so my question is if any of the jar file errors out how can i know which line or method of the jar file errored out?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的问题非常模糊,但一般来说,Java 中的错误是使用异常处理的,因此您应该查看日志文件中的堆栈跟踪,该跟踪将为您提供有关错误发生位置的所有类和行信息。
Your question is exceptionally vague, but in general, errors in Java are handled using Exceptions, so you should look at your log files for a stacktrace which will give you all of the class and line information about where the error occurred.
如果 jar 附有源代码,那么您可以准确地找出错误所在。
JAR 本身具有异常处理设置,然后打印错误消息。
If the jar has source code attached then you could find out exactly where the error lies.
JARs themselves have exception handling setup, which then prints the Error messages.