如何跟踪 JSP
有没有办法跟踪 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看这些链接。
http://www.eclipse.org/webtools/initial-贡献/IBM/evalGuides/ServerToolsEval.html
从 eclipse 调试 JSP
Look at these links.
http://www.eclipse.org/webtools/initial-contribution/IBM/evalGuides/ServerToolsEval.html
debug JSP from eclipse
查找相应的 .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.