如何跟踪 JSP

发布于 2025-01-03 13:27:24 字数 106 浏览 1 评论 0原文

有没有办法跟踪 JSP 以确定它在哪里给我带来错误。我收到 java.lang.NullPointerException,但我不知道代码的哪一部分导致了它。是否有任何语句可以用来跟踪错误发生的位置?

Is there any way to trace a JSP to determine where it's giving me an error. I get a java.lang.NullPointerException, but I have no idea which part of the code is causing it. Is there any statement I can use to trace where the error occurs?

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

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

发布评论

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

评论(2

拍不死你 2025-01-10 13:27:24

查找相应的 .java 文件并在抛出 NPE 的行处设置断点。

JSP 在传递给 javac 进行编译之前被编译为 .java 文件。

Look for the corresponding .java file and set a break point in that at the line throwing the NPE.

A JSP gets compiled to a .java file, before being passed to javac for compilation.

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