zoukankan      html  css  js  c++  java
  • @ControllerAdvice全局异常处理不起作用原因及解决办法

    这段时间使用springboot搭建基础框架,作为springboot新手,各种问题都有。


    当把前端框架搭建进来时,针对所有controller层的请求,所发生的异常,需要有一个统一的异常处理,然后返回错误页面。其中方法很多,可以使用拦截器,或者filter,我是使用controlleradvice注解。

    package org.lhzhian.base.exception;

    import org.springframework.web.bind.annotation.ControllerAdvice;
    import org.springframework.web.bind.annotation.ExceptionHandler;
    import org.springframework.web.servlet.ModelAndView;

    /**
    * 异常统一处理
    * @author lhzhian
    * @date 2016年4月28日
    */
    @ControllerAdvice
    public class GlobalExceptionHandler {

    private final static String ERROR_PAGE = "error";

    @ExceptionHandler(Exception.class)
    public ModelAndView handle(Exception e){
    ModelAndView mv = new ModelAndView();
    mv.addObject("message", e.getMessage());
    mv.setViewName(ERROR_PAGE);
    return mv;
    }

    }


    定义了全局异常处理类GlobalExceptionHandler,当controller层的某个action抛出异常后,GlobalExceptionHandler就能捕获到,把异常交给handle方法处理,该方法用
    @ExceptionHandler注解,这是ControllerAdvice配套的注解,如有不明白之处,可以看看官方文档。
        完成后,在controller的某个方法,故意抛出一个RuntimeException,如int a = 1 / 0; 但是不管怎么调试,始终没有进入handle放开,找了很多资料和官方文档,跟此
    处使用的是一样,一开始以为是配置问题,但是项目是使用springboot的,并不需要什么配置。后来不知道在哪个博客看到,定义了之后,要让spring扫描到。于是我就开始
    检查springboot入口的main方法

    @SpringBootApplication(scanBasePackages = "org.lhzhian")
    public class Application {

    public static void main(String[] args) throws Exception {
    SpringApplication.run(Application.class, args);
    }

    }


    问题就在scanBasePackages = "org.lhzhian",这样是,spring ioc是扫描不到@ControllerAdvice的,也就根本没有这个bean,自然也不会进入handle方法,所以为了让
    spring扫描到这个bean,我就试了下 scanBasePackages = {"org.lhzhian","org.lhzhian.base.exception"},结果果然进入handle了。
        
        总结:@ControllerAdvice注解的类,需要让spring扫描到。
    ---------------------
    作者:壮士断臂
    来源:CSDN
    原文:https://blog.csdn.net/u011442760/article/details/73522098

  • 相关阅读:
    noip宝藏
    [HNOI2008]玩具装箱TOY
    hdu 4372 Count the Buildings 轮换斯特林数
    bzoj 3000 Big Number 估算n!在k进制下的位数 斯特林公式
    自然数幂求和方法1:扰动法(求两次)
    斯特林数 学习笔记
    hdu 3625 Examining the Rooms 轮换斯特林数
    cf 472G Design Tutorial: Increase the Constraints 分块+压位/FFT
    chef and churu 分块 好题
    分块 学习笔记
  • 原文地址:https://www.cnblogs.com/baojun/p/10750549.html
Copyright © 2011-2022 走看看