struts2.3.20 exceptionmapping bug 无法使用

struts2 为我们提供了针对不同异常返回不同页面,使用xml配置,ExceptionMapping注解均可,

今天使用最新版 struts2.3.20 体验一下异常处理功能,发现不能使用,不论是xml还是注解,也不知是否新版本struts2有新改动,换成 struts2.3.16.3 正常;

配置如下:

 <package name="test" extends="struts-default">

  <action name="Login*" class="struts20.action.LoginAction" method="{1}">
   <result name="success">/login_success.jsp</result>
   <result name="error">/login_fail.jsp</result>
   <exception-mapping result="error" exception="com.exec.TestException"></exception-mapping>
  </action>

 </package>

查看源码 发现 com.opensymphony.xwork2.DefaultActionInvocation 类的 protected String invokeAction 方法改动较大;

如下图:

struts2.3.20 exceptionmapping bug 无法使用_第1张图片

1、左边是struts2.3.20,右边是struts2.3.16.3

2、423行、427行,均是调用Action方法;

3、当Action方法有异常抛出时,被包装成 MethodFailedException ,但是左边直接被424行 catch 截获,

调试发现,

      a、截获后没有去处理ExceptionMapping;

      b、而去执行了convention插件 的一个空 未知处理器;

      c、右边3.16.3没有问题;

也不知是否是3.20有什么配置更改!


你可能感兴趣的:(struts2.3.20 exceptionmapping bug 无法使用)