如何处理 web.xml 中的 HTTP 510、598 和 599 错误代码

问题描述 投票:0回答:1

我们使用weblogic来部署我们的应用程序,要求是处理所有服务器错误, 在 web.xml 中,有 500 到 510、598 和 599。 错误代码的规范 - 510、598 和 599 会引发以下异常:

Exception:
<BEA-101024> Unsupported error status code for error-page in web.xml.

web.xml中的代码如下

<error-page>
    <error-code>510</error-code>
    <location>/jsp/main/http_error.jsp</location>
</error-page>

有没有其他方法来处理这3个错误代码(510、598和599)或者根本不需要处理。 非常感谢您对此的建议。谢谢。

servlets web.xml
1个回答
0
投票

如果您的应用程序将返回这些错误,则可能您正在实现一些相关功能 - 返回

510
的符合 RFC 2774 的扩展,以及返回
598
599
的代理。为什么不在您正在编写的扩展或代理中明确返回您想要的页面内容,而不是使用
web.xml

© www.soinside.com 2019 - 2024. All rights reserved.