我正在尝试在jsp页面上打印出异常堆栈跟踪。但是,似乎没有填充隐式异常对象。
<div xmlns:c="http://java.sun.com/jsp/jstl/core" xmlns:fn="http://java.sun.com/jsp/jstl/functions"
xmlns:spring="http://www.springframework.org/tags"
xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0">
<jsp:output omit-xml-declaration="yes"/>
<jsp:directive.page isErrorPage="true" />
<spring:message var="title" code="error_uncaughtexception_title"/>
<h2>${fn:escapeXml(title)}</h2>
<p>
<spring:message code="error_uncaughtexception_problemdescription"/>
</p>
<c:if test="${not empty exception}">
<p>
<h4>
<spring:message code="exception_details"/>
</h4>
<spring:message var="message" code="exception_message"/>
<c:out value="${exception.localizedMessage}"/>
<spring:message var="stacktrace" code="exception_stacktrace"/>
<c:forEach items="${exception.stackTrace}" var="trace">
<c:out value="${trace}"/>
<br/>
</c:forEach>
</p>
</c:if>
在web.xml中正确配置了该页面:
<error-page>
<exception-type>java.lang.Exception</exception-type>
<location>/uncaughtException</location>
</error-page>
我猜错了什么?
答案 0 :(得分:5)
exception
隐式对象可用作页面变量(即用于scriptlet),但不能用作EL引用。
您可以使用${pageContext.errorData}
表达式访问异常状态(请参阅docs),这是javax.servlet.jsp.ErrorData
类型的对象(请参阅javadoc)。
有关示例,请参阅J2EE tutorial。