ssm:全局异常处理器

来源:互联网 发布:苹果蜂窝移动网络位置 编辑:程序博客网 时间:2024/06/01 09:06

思路:


系统遇到异常,在程序中手动抛出,dao抛给service,service抛给controller、controller抛给前端控制器,前端控制器调用全局异常控制器。
全局异常处理器处理思路:

  • 解析出异常类型
  • 如果该异常类型是系统自定义的异常,直接取出异常信息,在错误页面展示
  • 如果该异常类型不是系统自定义的异常,构造一个自定义的异常类型(信息为”未知错误”)

CustomException :

public class CustomException extends Exception{     private String message;     public CustomException(String message){         this.message=message;     }    public String getMessage() {        return message;    }    public void setMessage(String message) {        this.message = message;    }}

CustomExceptionHandler

public class CustomExceptionHandler implements HandlerExceptionResolver{    @Override    public ModelAndView resolveException(HttpServletRequest arg0, HttpServletResponse arg1, Object arg2,            Exception arg3) {        // TODO Auto-generated method stub    /*  String message=null;        if (arg3 instanceof CustomException) {            message=((CustomException)arg3).getMessage();        }else {            message="未知错误";        }*/        CustomException  customException=null;        if (arg3 instanceof CustomException) {            customException=(CustomException)arg3;        }else {            customException=new CustomException("未知错误");        }   //错误信息        String message=customException.getMessage();        ModelAndView modelAndView=new ModelAndView();        modelAndView.addObject("message", message);        modelAndView.setViewName("error.jsp");        return modelAndView;    }}

springmvc.xml

  <!-- 全局异常处理器   只要实现HandlerExceptionResolver接口就是全局处理器 -->  <bean class="com.sanye.exception.CustomExceptionHandler"/>
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 回奶乳房有硬块怎么办 回奶胀痛有硬块怎么办 回奶期间有硬块怎么办 回奶期间乳房有硬块怎么办 回奶乳房有肿块怎么办 牛犊子出生3天喘怎么办 猪高烧不退不吃怎么办 苹果6刷机失败怎么办 uc能看不能下怎么办 苹果6s铃声太小怎么办 苹果6铃声声音小怎么办 苹果7来电铃声小怎么办 红米手机声音小怎么办 微信安装不上去怎么办 6s无法安装微信怎么办 苹果4微信版本低怎么办 新手机没有微信怎么办 新手机登陆微信怎么办 新号码被注册过怎么办 微信注册不了怎么办啊 苹果4铃声不响怎么办 苹果6黑屏没反应怎么办 苹果7卡机黑屏了怎么办 苹果7手机铃声小怎么办 支付宝发现套现怎么办 空调滴水管断了怎么办 地漏下水管断了怎么办 脸上长白色糠疹怎么办 腋下长白色的毛怎么办 饥荒电羊死光了怎么办 6s储存空间虚满怎么办 大胸下垂穿婚纱怎么办 美团签约成功后怎么办 拍婚纱照笑不出来怎么办 长得丑拍婚纱照怎么办 失恋了怎么办才能最快走出来 眼镜大了往下掉怎么办 眼镜带着往下掉怎么办 眼镜腿松了怎么办妙招 眼镜框大了总掉怎么办 吃不下饭恶心想吐怎么办