struts2中异常处理

在Struts 2框架中,采用声明式异常处理方式。在这种方式下,只需要在struts.xml文件中进行配置,Struts 2便能够处理异常,配置异常处理机制有四种:

1.局部异常

2.全局异常

3.获取异常信息


1.局部异常配置:

<action name="login" extends="struts.default">

<result name="success">/suc.jsp</result> <!-- 配置局部异常处理 --> 

<result name="exception">/exception.jsp</result>

<exception-mapping result="exception" exception="java.lang.Exception"></exception>

</action>

2.全局异常配置(配在包里面)

<global-results> <!-- 配置全局异常处理 --> 
      <result name="global-exception" type="redirect">/global-exception.jsp</result> 
</global-results> 
<global-exception-mappings>
     <exception-mapping result="global-exception" exception="java.lang.Exception"></exception-mapping> 
</global-exception-mappings> 

3.输出异常

1.exception:异常的描述信息,通过getMessage()方法得到。 <s:property value="exception" />  
2.exceptionStack:异常栈的跟踪信息。 <s:property value="exceptionStack" /> 


你可能感兴趣的:(框架,exception,struts,action,login)