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

Spring MVC的Controller统一异常处理:HandlerExceptionResolver

时间:2015-05-01 22:36:00      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:

出现异常并不可怕,可怕的是出现了异常,你却不知道,也没有进行异常处理。
Spring MVC的Controller出现异常的默认处理是响应一个500状态码,再把错误信息显示在页面上,如果用户看到这样的页面,一定会觉得你这个网站太LOW了。
要解决Controller的异常问题,当然也不能在每个处理请求的方法中加上异常处理,那样太繁琐。Spring MVC提供了一个HandlerExceptionResolver接口,可用于统一异常处理。

HandlerExceptionResolver接口

public interface HandlerExceptionResolver {
    ModelAndView resolveException(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex);
}

HandlerExceptionResolver接口中定义了一个resolveException方法,用于处理Controller中的异常。Exception ex参数即Controller抛出的异常。返回值类型是ModelAndView,可以通过这个返回值来设置异常时显示的页面。

实现HandlerExceptionResolver

HandlerExceptionResolver是一个interface,还需要定义一个实现类,来实现异常出现后的逻辑。

public class MyExceptionResolver implements HandlerExceptionResolver {

    private ExceptionLogDao exceptionLogDao;

    @Override
    public ModelAndView resolveException(HttpServletRequest request,
            HttpServletResponse response, Object handler, Exception ex) {

        // 异常处理,例如将异常信息存储到数据库
        exceptionLogDao.save(ex);

        // 视图显示专门的错误页
        ModelAndView modelAndView = new ModelAndView("errorPage");
        return modelAndView;
    }
}

上面代码实现了HandlerExceptionResolver类的resolveException方法。出现异常时,会将异常信息存储到数据库,并显示专门的错误页面。
当然,还有一些其他常用的异常处理方法,例如通过javamail将异常报警发送给相关人员。总之,出现的异常要能被相关人员看到,这样才能不断完善代码。

配置

最后,还需要将自己的HandlerExceptionResolver实现类配置到Spring配置文件中,或者加上@Component注解。

<bean class="com.xxg.MyExceptionResolver" />

至此,MyExceptionResolver就可以处理Controller抛出的异常了。

相关问题

HandlerExceptionResolver能处理哪些异常?

HandlerExceptionResolver只能处理所有的Exception,也就是HTTP状态码是500的异常,不能处理404、400等其他状态码对应的问题。

HandlerExceptionResolver和web.xml中配置的error-page会有冲突吗?

web.xml中配置error-page同样是配置出现错误时显示的页面:

<error-page>
    <error-code>500</error-code>
    <location>/500.jsp</location>
</error-page>

如果resolveException返回了ModelAndView,会优先根据返回值中的页面来显示。不过,resolveException可以返回null,此时则展示web.xml中的error-page的500状态码配置的页面。
当web.xml中有相应的error-page配置,则可以在实现resolveException方法时返回null。
API文档中对返回值的解释:

return a corresponding ModelAndView to forward to, or null for default processing.

Spring MVC的Controller统一异常处理:HandlerExceptionResolver

标签:

原文地址:http://blog.csdn.net/xiao__gui/article/details/45422649

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