Struts2异常处理

Struts2异常处理

Struts2提供了强大的异常处理机制,只需要在struts.xml文件中配置异常处理即可,而不需要在Action中捕获异常。

自定义异常类(继承了Exception)

示例如下:

publicclass SecurityException extends Exception {

    private String errorMessage;

    public SecurityException() {

        super();

    }

    public SecurityException(String message) {

        this .errorMessage=message;

    }

    public String getErrorMessage() {

        returnerrorMessage;

    }

}

全局异常

<global-exception-mappings>

        <exception-mapping result="SQLException" exception="java.sql.SQLException" />

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

    </global-exception-mappings>

        <global-results>

            <result name="SQLException">/error/SQLException.jsp</result>

            <result name="Exception">/error/Exception.jsp</result>

</global-results>

局部异常

<action name="hello"class="com.chen.action.Hello">

            <exception-mapping result="SecurityException" exception="com.chen.exception.SecurityException"/>

            <result name="success">/sayHao.jsp</result>

            <result name="SecurityException">/error/SecurityException.jsp</result>

</action>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值