エラー 500 に対処するためのカスタム JSP ページをユーザーに提供したいと考えています。
これまでのところ、通常の構成を試しました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>
どちらを使用すればよいかわからず、うまく機能しませんでした。