如何在 web.xml 中定义常规/后备错误页面
我的 Java Web 应用程序当前通过在 web.xml 中执行此操作,将某些错误代码映射到错误 servlet(实际上是 spring web flow,但这应该不是重点):
<error-page>
<error-code>500</error-code>
<location>/spring/error?error=500</location>
</error-page>
<error-page>
<error-code>404</error-code>
<location>/spring/error?error=404</location>
</error-page>
但是,在某些情况下,服务器仍然会崩溃并给出向用户转储一些异常的堆栈跟踪。 (顺便说一句,在 IBM WebSphere 上运行)。我的问题是;是否可以定义一个在所有其他错误不匹配时使用的后备错误页面?这样我们就可以保证在任何情况下都不会出现堆栈跟踪。
My Java web app currently maps certain error codes to an error servlet (spring web flow, actually, but that should be besides the point), by doing this in web.xml:
<error-page>
<error-code>500</error-code>
<location>/spring/error?error=500</location>
</error-page>
<error-page>
<error-code>404</error-code>
<location>/spring/error?error=404</location>
</error-page>
However, in certain cases the server will still crash and give a stack trace dump of some exceptions to the user. (Running on IBM WebSphere btw). My question then is; is it possible to define a fall-back error page that will be used if all other errors don't match? So that we're guaranteed not to end up with a stack trace under any circumstance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用以下内容:
请参阅 http://www. oracle.com/technology/sample_code/tech/java/codesnippet/servlets/HandlingServletExceptions/HandlingServletExceptions.html 了解更多信息。
Use the following:
See http://www.oracle.com/technology/sample_code/tech/java/codesnippet/servlets/HandlingServletExceptions/HandlingServletExceptions.html for more info.