Hybris中的Custom 500错误页面

时间:2016-06-01 14:50:17

标签: spring-mvc error-handling web.xml hybris http-status-code-500

我必须在Hybris的空白页面上重定向您在图片中看到的500错误页面。

enter image description here

怎么做呢?

2 个答案:

答案 0 :(得分:4)

您是否尝试在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>

答案 1 :(得分:2)

您可以实现自定义错误页面以防止此类意外行为。大多数情况下,它是在Apache Web服务器上处理的。像thisthis

但是,正如@ Free-Minded回答的那样,您还可以在店面的 web.xml

中使用错误页面标签在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>