如何在浏览器中隐藏堆栈跟踪(使用 Jetty)?

发布于 2024-08-20 17:40:17 字数 174 浏览 3 评论 0原文

我使用 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 技术交流群。

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

发布评论

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

评论(1

温柔嚣张 2024-08-27 17:40:17

您可以在 web.xml 文件中设置自定义错误页面,如下所示:

<error-page>  
  <error-code>500</error-code>  
  <location>/WEB-INF/jsps/errors/error.jsp</location>  
</error-page> 

然后在 error.jsp 中,显示自定义消息并且不显示堆栈跟踪。

You can set up a custom error page in your web.xml file, with something like this:

<error-page>  
  <error-code>500</error-code>  
  <location>/WEB-INF/jsps/errors/error.jsp</location>  
</error-page> 

Then in your error.jsp, display a custom message and don't show the stacktrace.

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