如何在浏览器中隐藏堆栈跟踪(使用 Jetty)?
我使用 Jetty 作为我的 servlet 容器。如果我的 servlet 之一抛出异常,浏览器将显示 HTTP ERROR 500 以及异常消息和堆栈跟踪。
出于安全原因,我需要隐藏堆栈跟踪。有没有一种通用的配置方法?或者我需要将所有 Throwables 捕获到我的 Servlet 中吗?
谢谢
I'm using Jetty as my servlet container. If an exception is thrown in one of my servlets the browser will display an HTTP ERROR 500 with the exception message and a stack trace.
For security reasons I need to hide the stack trace. Is there a way to configure this generally? Or do I need to trap all Throwables in my Servlet?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 web.xml 文件中设置自定义错误页面,如下所示:
然后在 error.jsp 中,显示自定义消息并且不显示堆栈跟踪。
You can set up a custom error page in your web.xml file, with something like this:
Then in your error.jsp, display a custom message and don't show the stacktrace.