在jboss中运行时如何知道jar文件的哪一行出错?

发布于 2024-10-20 17:41:21 字数 94 浏览 4 评论 0原文

我正在 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 技术交流群。

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

发布评论

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

评论(2

情话难免假 2024-10-27 17:41:21

您的问题非常模糊,但一般来说,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.

情话墙 2024-10-27 17:41:21

如果 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.

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