如何更改内部服务器错误的处理?

发布于 2024-08-22 03:26:09 字数 369 浏览 5 评论 0原文

我的应用程序产生内部服务器错误,在 tomcat 上运行时它会打印带有给定错误的堆栈跟踪。在 Oracle 上,它会隐藏错误并将其发布到 application.log 中。

是否可以通过部署描述符更改此设置?

500 Internal Server Error

Servlet error: An exception occurred. The current application deployment
descriptors do not allow for including it in this response. 

Please consult the application log for details.

My application produces an internal server error, running on tomcat it prints a stacktrace with the given error. On Oracle it hides the error and post it to application.log.

Is it possible to change this setting via the deployment descriptor?

500 Internal Server Error

Servlet error: An exception occurred. The current application deployment
descriptors do not allow for including it in this response. 

Please consult the application log for details.

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

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

发布评论

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

评论(1

没有你我更好 2024-08-29 03:26:09

您可以在 web.xml 中定义错误处理页面:

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

如果应用程序显式设置了错误代码,请确保它使用 response.sendError() 而不是 response.setStatus() 因为后者会忽略 web 中定义的自定义错误页面.xml

p.s 通过谷歌搜索您的错误消息,我假设这是一个在 OAS

You can define error handling pages in your web.xml:

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

If the error code is explicitly set by your application make sure it uses response.sendError() and not response.setStatus() because the latter will ignore your custom error pages defined in web.xml

p.s By googling your error message I assume that this is a Java web application running on OAS

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