Exception mappings is a powerful feature for dealing with an Action
class that throws an Exception. The core idea is that an Exception
thrown during the Action method can be automatically caught and mapped
to a predefined Result. This declarative strategy is especially useful
for frameworks, like Hibernate and Acegi, that throw RuntimeExceptions.
Exception 映射是一个强大的功能,用来处理Action类抛出一个Exception。核心是一个Exceptio你在Action期间异常被自动抓取,并且映射到预先定义好的结果。这个声明方式的策略对framework相当有用,例如Hibernate和Acegi,他们抛出RuntimeException。
As with many other parts of the framework, an Interceptor is needed
to activate the exception mapping functionality. Below is a snippet
from struts-default.xml which has the exception mapping already activated.
与框架其他部分类似,一个Interceptor用来激活exception mappingfunctionality.下面是struts-default.xml的代码片断,在它里面exception映射已经被激活。
...
<interceptors>
...
<interceptor name="exception" class="com.opensymphony.xwork.interceptor.ExceptionMappingInterceptor"/>
...
</interceptors>
<interceptor-stack name="defaultStack">
<interceptor-ref name="exception"/>
<interceptor-ref name="alias"/>
<interceptor-ref name="servlet-config"/>
<interceptor-ref name="prepare"/>
<interceptor-ref name="i18n"/>
<interceptor-ref name="chain"/>
<interceptor-ref name="debugging"/>
<interceptor-ref name="profiling"/>
<interceptor-ref name="scoped-model-driven"/>
<interceptor-ref name="model-driven"/>
<interceptor-ref name="fileUpload"/>
<interceptor-ref name="checkbox"/>
<interceptor-ref name="static-params"/>
<interceptor-ref name="params"/>
<interceptor-ref name="conversionError"/>
<interceptor-ref name="validation">
<param name="excludeMethods">input,back,cancel,browse</param>
</interceptor-ref>
<interceptor-ref name="workflow">
<param name="excludeMethods">input,back,cancel,browse</param>
</interceptor-ref>
</interceptor-stack>
...
To use exception mapping, we simply need to map Exceptions to
specific Results. The framework provides two ways to declare an
exception mapping <exception-mapping/> - globally or for a specific action mapping. The exception mapping element takes two attributes, exception and result.
用Exception映射,我们简单地需要映射Exception到特定的结果。框架提供两种方式申明一个Exception映射<exception-mapping>-全局或特定的Action映射。Exception映射元素使用两种属性,exception和result。
When declaring an exception mapping, the Interceptor will find the
closest class inheritance match between the Exception thrown and the
Exception declared. The Interceptor will examine all declared mappings
applicable to the action mapping, first local and then global mappings.
If a match is found, the Result is processed, just as if it had been
returned by the Action.
当声明一个exception映射,Interceptor将寻找最近的类继承关系来在Exception throw和Exception声明之间匹配。首先找local,然后找全局。如果找到匹配,结果将会被处理,就像它被Action处理返回一样。
This process follows the same rules as a Result returned from an
Action. It first looks for the Result in the local action mapping, and
if not found, it looks for a global Result.
Below is an example of global and local exception mappings.
<struts>
<package name="default">
...
<global-results>
<result name="login" type="redirect">/Login.action</result>
<result name="Exception">/Exception.jsp</result>
</global-results>
<global-exception-mappings>
<exception-mapping exception="java.sql.SQLException" result="SQLException"/>
<exception-mapping exception="java.lang.Exception" result="Exception"/>
</global-exception-mappings>
...
<action name="DataAccess" class="com.company.DataAccess">
<exception-mapping exception="com.company.SecurityException" result="login"/>
<result name="SQLException" type="chain">SQLExceptionAction</result>
<result>/DataAccess.jsp</result>
</action>
...
</package>
</xwork>
In the example above, here is what happens based upon each Exception:
- A java.sql.SQLException will chain to the SQLExceptionAction (action mapping not shown)
- A com.company.SecurityException will redirect to Login.action
- Any other exception that extends java.lang.Exception will return the /Exception.jsp page
Exception Values on the ValueStack
By default, the ExceptionMappingInterceptor adds the following values to the Value Stack:
exception |
The exception object itself |
exceptionStack |
The value from the stack trace |