如何一次捕获所有错误代码
我怎样才能一次捕获所有错误代码? 我尝试了 *
但没有成功。
<error-page>
<error-code>javax.servlet.error.status_code</error-code>
<location>/default_error_page.html</location>
</error-page>
How can i catch all error-codes at once?
i tried *
but it didnt work.
<error-page>
<error-code>javax.servlet.error.status_code</error-code>
<location>/default_error_page.html</location>
</error-page>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据 web.xml XSD。您必须单独指定每个错误代码。
There is no way to do that according to the web.xml XSD. You'll have to specify each error code separately.
正如 Joseph 提到的,无法通过 XSD 执行此操作,但是*执行您想要的操作的方法是使用过滤器。如果过滤器捕获任何异常,那么您可以返回任何您想要的内容。
当然,只要服务器尚未将标头发送回客户端,此解决方案就可以工作。
As Joseph mentioned, there is no way of doing that from the XSD, but* the way to do what you want is by using a filter. If the filter catches any exception, then you can return any content you want.
Of course this solution works as long as the server hasn't sent the headers back to the client.