如何一次捕获所有错误代码

发布于 2024-11-19 14:00:45 字数 249 浏览 0 评论 0原文

我怎样才能一次捕获所有错误代码? 我尝试了 * 但没有成功。

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

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

发布评论

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

评论(2

書生途 2024-11-26 14:00:45

根据 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.

掀纱窥君容 2024-11-26 14:00:45

正如 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.

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