在Facelets页面中显示异常堆栈跟踪

时间:2012-08-17 14:31:22

标签: java jsf exception jsf-2 facelets

我需要在我的JSF应用程序error.xhtml页面中显示异常堆栈跟踪。我知道用JSP页面做这件事有多简单。但是使用JSF 2.0我有一个问题。

在我的web.xml我已经将JSF 2.0 Facelets页面定义为错误页面:

<error-page>
    <exception-type>java.lang.Throwable</exception-type>
    <location>/faces/views/error.xhtml</location>
</error-page>

发生错误时,我会被重定向到此页面。我需要的是在此Facelets页面中显示异常的堆栈跟踪。

我试过用:

<pre>
    <h:outputText value="${exception}"/>
</pre>

但我没有得到任何输出。我一直在网上搜索,但我找不到解决方案。如何在Facelets页面中显示异常堆栈跟踪?

修改

我刚试过:

<c:forEach var="exeption" items="${exception.stackTrace}">
    <div>${exeption}</div>
</c:forEach>

<h:dataTable value="#{exception.stackTrace}"
             var="exception">
    <h:column>
        <h:outputText value="#{exception}"/>
    </h:column>
</h:dataTable>

JSTL无法正常工作并通过数据表进行交互也无法正常工作。我确定发生异常,我在日志文件中看到它。

1 个答案:

答案 0 :(得分:13)

它作为请求属性存在,其名称由RequestDispatcher.ERROR_EXCEPTION常量指定。

#{requestScope['javax.servlet.error.exception']}

这为您提供了整个Exception对象。获得它的堆栈跟踪需要更多的工作。你基本上需要create a custom EL function这基本上是这样的:

public static String printStackTrace(Throwable exception) {
    StringWriter stringWriter = new StringWriter();
    exception.printStackTrace(new PrintWriter(stringWriter, true));
    return stringWriter.toString();
}

以便您可以按如下方式使用它:

<pre>#{my:printStackTrace(requestScope['javax.servlet.error.exception'])}</pre>

JSF实用程序库OmniFaces也提供了此功能。另请参阅FullAjaxExceptionHandler showcase page