1、小案例代码:
jsp界面:
<body> <s:property value="exceptionStack"/><br> <s:property value="exception"/><br> <s:property value="exception.getMessage"/> <form action="product-details.action" method="post"> ProductName:<input type="text" name="productName"/><br> ProductDesc:<input type="text" name="productDesc"/><br> ProductPrice:<input type="text" name="productPrice"/><br> <input type="submit" value="Submit"/> </form> </body>
Action类(在其中故意写了一个 java.lang.ArithmeticException: / by zero):
public String save() { int i=1/0; return "detailes"; }
struts.xml
<action name="product-details" class="com.luwenhu.struts2.Model.Product" method="save"> <exception-mapping result="input" exception="java.lang.ArithmeticException"></exception-mapping> <result name="input">/WEB-INF/pages/input.jsp</result> <result name="detailes">/WEB-INF/pages/details.jsp</result> </action>
2、源码分析
(1)从struts-default.xml中struts2提供了一个默认的拦截器栈(defaultStack)
(2)拦截器栈中有个exception拦截器,所属类为com.opensymphony.xwork2.interceptor.ExceptionMappingInterceptor
(3)查看ExceptionMappingInterceptor这个类的intercept(拦截)方法,观察其怎么进行工作的。
观察这个方法,拦截器在捕获到异常e的时候会:
a.将这个异常交个handleLogging()方法
b.根据struts.xml的配置内容,通过ExceptionMappingConfig,配置异常结果处理
c.将异常处理放置(publish)到值栈中
3、debug验证
(1)我们在捕获到异常(191行)后进行断点,然后观察变量以及它的值,发现成功捕获到java.lang.ArithmeticException: / by zero
↓
(2)继续执行到196行,mappingConfig对应着struts.xml中的异常配置
<-------->
↓
注意带值栈栈顶此时还是test对象:
(3) 继续执行代码至201行,执行完之后,我门发现值栈的栈顶发生了变化。此时栈顶为ExceptionHolder,也就是说异常信息成功放置到了值栈中
↓
就上就是ExceptionMappingInterceptor拦截器的工作原理!