这段时间使用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;
}
}
@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扫描到。