Hybris 中的自定义 500 错误页面
Custom 500 error page in Hybris
我必须在 Hybris 的空白页面上重定向您在图片中看到的 500 错误页面。
如何做到这一点?
您是否尝试过在 web.xml 中启用错误页面?
<error-page>
<exception-type>java.lang.Exception</exception-type>
<location>/WEB-INF/pages/error/serverError.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/WEB-INF/pages/error/serverError.jsp</location>
</error-page>
您可以实现自定义错误页面以防止此类意外行为。它主要在 Apache Web 服务器上处理。喜欢 this, this.
但是,正如@Free-Minded 回答的那样,您还可以使用店面 web.xml[=18 的 error-page 标签在 Hybris 中进行配置=]
<error-page>
<exception-type>java.lang.Throwable</exception-type>
<location>/WEB-INF/pages/error/serverError.jsp</location>
</error-page>
<error-page>
<error-code>java.lang.Exception</error-code>
<location>/WEB-INF/pages/error/serverError.jsp</location>
</error-page>
我必须在 Hybris 的空白页面上重定向您在图片中看到的 500 错误页面。
如何做到这一点?
您是否尝试过在 web.xml 中启用错误页面?
<error-page>
<exception-type>java.lang.Exception</exception-type>
<location>/WEB-INF/pages/error/serverError.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/WEB-INF/pages/error/serverError.jsp</location>
</error-page>
您可以实现自定义错误页面以防止此类意外行为。它主要在 Apache Web 服务器上处理。喜欢 this, this.
但是,正如@Free-Minded 回答的那样,您还可以使用店面 web.xml[=18 的 error-page 标签在 Hybris 中进行配置=]
<error-page>
<exception-type>java.lang.Throwable</exception-type>
<location>/WEB-INF/pages/error/serverError.jsp</location>
</error-page>
<error-page>
<error-code>java.lang.Exception</error-code>
<location>/WEB-INF/pages/error/serverError.jsp</location>
</error-page>