码迷,mamicode.com
首页 > 编程语言 > 详细

Spring MVC全局异常处理

时间:2017-05-02 09:58:23      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:alt   blog   tps   method   res   包名   span   exce   异常   

继承HandlerExceptionResolver接口实现自己的处理方法,如:

技术分享
public class MyHandlerExceptionResolver implements HandlerExceptionResolver {   
  
    @Override  
    public ModelAndView resolveException(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) {   

        //添加自己的异常处理逻辑,如日志记录等        

         // TODO Auto-generated method stub   
        return new ModelAndView("exception");   
    }   
  
}
技术分享

然后在项目的配置文件中添加:

<bean id="exceptionResolver" class="所在包名.MyHandlerExceptionResolver"/>

Spring MVC全局异常处理

标签:alt   blog   tps   method   res   包名   span   exce   异常   

原文地址:http://www.cnblogs.com/sddychj/p/6794561.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!