我正在使用来自omnifaces 库的FullAjaxExeptionHandler 并且一切正常,但是我不确定如何在发生异常的页面上的PrimeFaces 对话框中显示异常。目前我只能将用户重定向到omnifaces展示中描述的异常页面。
我现在拥有的:
<error-page>
<exception-type>java.lang.RuntimeException</exception-type>
<location>/errorpages/bug.xhtml</location>
</error-page>
我想要的是:
<error-page>
<exception-type>java.lang.RuntimeException</exception-type>
<location>/currentpage.xhtml?showExceptionDialog(exception)</location>
</error-page>
谢谢。