我想为用户提供一个自定义 JSP 页面来处理错误 500。
到目前为止,我尝试了正常的配置web.xml
<error-page>
<description>Uncaught exception</description>
<error-code>500</error-code>
<location>/error500.jsp</location>
</error-page>
这是行不通的。
我也尝试了 Google App Engine 的这个配置:
https://developers.google.com/appengine/docs/java/config/appconfig#Custom_Error_Responses
<static-error-handlers>
<handler file="/error500.jsp" />
</static-error-handlers>
我不知道要使用哪些,也没有设法使任何工作。