答案 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服务器上处理的。像this,this。
但是,正如@ 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>