博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
struts2异常处理
阅读量:5021 次
发布时间:2019-06-12

本文共 3359 字,大约阅读时间需要 11 分钟。

  Struts2的异常处理机制:

任何成熟的MVC框架都应该提供成就的异常处理机制。Strut2也不例外。Struts2提供了一种声明式的异常处理方式。Struts2也是通过配置的拦截器来实现异常处理机制的。

Struts2的异常处理机制通过在struts.xml文件中配置﹤exception-mapping …﹥元素完成的,配置该元素时,需要指定两个属性:

exception:此属性指定该异常映射所设置的异常类型。

result:此属性指定Action出现该异常时,系统转入result属性所指向的结果。

  异常映射也分为两种:

局部异常映射:﹤exception-mapping…﹥元素作为﹤action…﹥元素的子元素配置。

 全局异常映射:﹤exception-mapping…﹥元素作为﹤global-exception-mappings﹥元素的子元素配置。

   输出异常信息:

使用Struts2的标签来输出异常信息:

 ﹤s:property value="exception.message"/﹥:输出异常对象本身。

﹤s:property value="exceptionStack"/﹥: 输出异常堆栈信息。

 

 

 

利用struts2的异常处理机制和拦截器机制可以很方便的实现异常处理功能,你不再需要在Action中捕获异常,并抛出相关的异常了,这些都交给拦截器来帮你做了。

 

 

1.  在 struts.xml 文件中,声明全局异常映射,以及对应的全局异常转发如下所示:

﹤global-results﹥

﹤result name="error"﹥/admin/error/ErrDisplay.ftl﹤/result﹥

﹤/global-results﹥

﹤global-exception-mappings﹥

﹤exception-mapping result="error" exception="com.orizone.hbmobile.hbcm.struts.BusinessException"﹥﹤/exception-mapping﹥

﹤/global-exception-mappings﹥

 

BusinessException  是异常处理类,代码如下所示:

 

public class BusinessException extends RuntimeException

{

 

    private static final long serialVersionUID = 0xc1a865c45ffdc5f9L;

   

    public BusinessException(String frdMessage)

    {

        super(createFriendlyErrMsg(frdMessage));

     

    }

 

    public BusinessException(Throwable throwable)

    {

        super(throwable);

    }

 

    public BusinessException(Throwable throwable, String frdMessage)

    {

        super(throwable);

      

    }

   

   

private static String createFriendlyErrMsg(String msgBody){

String prefixStr = "抱歉,";

String suffixStr = " 请稍后再试或与管理员联系!";

 

StringBuffer friendlyErrMsg = new StringBuffer("");

 

friendlyErrMsg.append(prefixStr);

friendlyErrMsg.append(msgBody);

friendlyErrMsg.append(suffixStr);

 

return friendlyErrMsg.toString();

}

}

 

 

2.  /admin/error/ErrDisplay.ftl 页面

这个页面很简单:

﹤body﹥

 ﹤h2﹥

         出现异常啦

 ﹤/h2﹥

 ﹤hr/﹥

   ﹤h3 style="color:red"﹥

   ﹤!-- 获得异常对象 --﹥

   

    ${exception.message?default("")}

    ﹤/h3﹥

    ﹤br/﹥

    ﹤!-- 异常堆栈信息(开发人员用) --﹥

    ﹤div style="display:none;"﹥

       ${exceptionStack?default("")}

    ﹤/div﹥

﹤/body﹥

﹤body﹥

 ﹤h2﹥

         出现异常啦

 ﹤/h2﹥

 ﹤hr/﹥

   ﹤h3 style="color:red"﹥

   ﹤!-- 获得异常对象 --﹥

   

    ${exception.message?default("")}

    ﹤/h3﹥

    ﹤br/﹥

    ﹤!-- 异常堆栈信息(开发人员用) --﹥

    ﹤div style="display:none;"﹥

       ${exceptionStack?default("")}

    ﹤/div﹥

﹤/body﹥

 

3.  在拦截器中,捕获常见的异常,并以友好异常信息抛出,相关代码如下所示:

public String intercept(ActionInvocation invocation) throws Exception

{

before(invocation);

String result = "";

 

try{

result = invocation.invoke();

}catch(DataAccessException ex){

throw new BusinessException("数据库操作失败!");

}catch(NullPointerException ex){

throw new BusinessException("调用了未经初始化的对象或者是不存在的对象!");

}catch(IOException ex){

throw new BusinessException("IO异常!");

}catch(ClassNotFoundException ex){

throw new BusinessException("指定的类不存在!");

}catch(ArithmeticException ex){

throw new BusinessException("数学运算异常!");

}catch(ArrayIndexOutOfBoundsException ex){

throw new BusinessException("数组下标越界!");

}catch(IllegalArgumentException ex){

throw new BusinessException("方法的参数错误!");

}catch(ClassCastException ex){

throw new BusinessException("类型强制转换错误!");

}catch(SecurityException ex){

throw new BusinessException("违背安全原则异常!");

}catch(SQLException ex){

throw new BusinessException("操作数据库异常!");

}catch(NoSuchMethodError ex){

throw new BusinessException("方法末找到异常!");

}catch(InternalError ex){

throw new BusinessException("Java虚拟机发生了内部错误");

}catch(Exception ex){

throw new BusinessException("程序内部错误,操作失败!");

}

 

after(invocation, result);

return result;

}

struts2做异常处理还是比较方便的了。

转载于:https://www.cnblogs.com/yuanmengnan/archive/2013/03/04/2942307.html

你可能感兴趣的文章
项目随想
查看>>
07.计算Nova→4.源码→2.RPC机制
查看>>
暗袭 2007?
查看>>
hdu 4409 Family Name List LCA +stl
查看>>
MySQL实现两张表数据的同步
查看>>
Hibernate 实体关联关系映射----总结
查看>>
fiddler抓https包
查看>>
技术面试可能会考到的知识点
查看>>
mysql中间件 -> Atlas简介&安装
查看>>
Problem G: 平面上的点和线——Point类、Line类 (III)
查看>>
解密Java内存溢出之持久代
查看>>
CoreBluetooth蓝牙4.0的封装
查看>>
如何解除禁用 UAC
查看>>
(数据分析)第02章 Python语法基础,IPython和Jupyter Notebooks.md
查看>>
遍历本地文件个数及创建、修改时间
查看>>
【WIN10】判斷程序運行在哪個平台
查看>>
TFS --- GrantBackup Plan Permissions Error
查看>>
傅里叶级数与积分方程
查看>>
软工作业3:用户体验分析——以“南通大学教务管理系统微信公众号”为例
查看>>
Css:背景色透明,内容不透明之终极方法!兼容所有浏览器
查看>>