This question already has answers here:
How can I print error stack trace in JSP page?
(9个答案)
4年前关闭。
用tomcat,spring,jsf将一些堆栈跟踪信息(也许是Exeception.message)放到我的自定义错误500页面上的最佳方法是什么?我只想显示出这种观念的根本原因。
(9个答案)
4年前关闭。
用tomcat,spring,jsf将一些堆栈跟踪信息(也许是Exeception.message)放到我的自定义错误500页面上的最佳方法是什么?我只想显示出这种观念的根本原因。
最佳答案
这是我在Struts中使用过的JSP语法。您可能可以使用JSf获得此功能或类似功能。
<!-- Get the exception object -->
<c:set var="exception" value="${requestScope['javax.servlet.error.exception']}"/>
<!-- Exception message(s) -->
<p>${exception.message}</p>
<p><c:if test="${not empty exception.cause.message}">${exception.cause.message}</c:if></p>
<!-- Stack trace -->
<jsp:scriptlet>
exception.printStackTrace(new java.io.PrintWriter(out));
</jsp:scriptlet>
09-25 20:52