小编典典

获取一些堆栈跟踪信息到自定义的tomcat错误500页面中

tomcat

用tomcat,spring,jsf将一些堆栈跟踪信息(也许是Exeception.message)放到我的自定义错误500页面上的最佳方法是什么?我只想显示出这种观念的根本原因。


阅读 721

收藏
2020-06-16

共1个答案

小编典典

这是我在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>
2020-06-16