我在Web应用程序中使用JSF和Spring。如果Spring Controller抛出异常,我将它们映射到特殊视图。
现在我想要捕获所有抛出Spring Context范围的异常。
在我的web.xml中,我定义了一个错误页面。
<!-- handle uncaught exceptions -->
<error-page>
<exception-type>java.lang.Exception</exception-type>
<location>/views/error/uncaughtexception.jsp</location>
</error-page>
在此页面中,我想显示异常和异常原因。
如何在error.jsp?
中访问和显示异常THX
答案 0 :(得分:3)
按键"exception"
可在请求范围内使用。
<p>Exception message: ${exception.message}</p>
<p>Exception cause: ${exception.cause}</p>