FullAjacExceptionHandler只能捕获javax.el.ELException或java.lang.Throwable。 Throwable也优先于javax.el.ELException。我需要显式捕获托管bean抛出的特定异常。但是,ELException显然包装了根本原因异常(即LoginFailedException)。
我正在使用JSF 2(MyFaces 2.1.10),Spring EL解析器(Spring管理的bean),el-api-2.2和glassfish el-impl-2.2。
这是错误:
Ajax request: No
Status code: 500
Exception type: class org.apache.myfaces.view.facelets.el.ContextAwareELException
Exception message: javax.el.ELException: org.tests.omnifaces.exception.LoginFailedException: Login failed.
Stack trace: org.apache.myfaces.view.facelets.el.ContextAwareELException: javax.el.ELException: org.tests.omnifaces.exception.LoginFailedException: Login failed.
...
LoginFailedException是一个简单的自定义异常。
我将不胜感激任何帮助。提前致谢。
编辑:
实验完成:
我创建了3个错误页面,以查看在抛出LoginFailedException时将调用/使用哪个页面。 XHTML错误页面包含完全相同的代码,除了标头String标识哪个是哪个。这是web.xml错误条目:
<error-page>
<exception-type>org.tests.omnifaces.exception.LoginFailedException</exception-type>
<location>/pages/errors/loginError.xhtml</location>
</error-page>
<error-page>
<exception-type>javax.el.ELException</exception-type>
<location>/pages/errors/elException.xhtml</location>
</error-page>
<error-page>
<exception-type>java.lang.Throwable</exception-type>
<location>/pages/errors/catchAllThrowable.xhtml</location>
</error-page>
将使用catchAllThrowable.xhtml。如果我删除(在web.xml上注释掉)Throwable,将使用ELException.xhtml。如果删除ELException,则异常将由容器(tomcat)处理,而不由loginError.xhtml处理。
希望这能澄清我的情况。
更新:
我现在使用AJAX调用提交表单(我想这是处理程序的目的),并且web.xml上的所有3个错误处理程序页面均处于活动状态(Throwable,ELException,LoginFailedException):
<h:commandButton id="loginButton" value="Login" action="#{login.loginUser}">
<f:ajax execute="@form" render="@form messages" />
</h:commandButton>
Throwable已被跳过,并且ELException被匹配(呈现elException.xhtml)。仍然无法在LoginFailedException上归零。
最佳答案
FullAjaxExceptionHandler
仅解开FacesException
的根本原因。但是,MyFaces ContextAwareELException
不是FacesException
的子类,而是它是ELException
的子类,因此无法展开。
根据OmniFaces issue 149,FullAjaxExceptionHandler
也进行了改进以展开ELException
。从OmniFaces 1.4开始可用。
关于java - FullAjaxExceptionhandler仅捕获javax.el.ELException或java.lang.Throwable,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15192990/