SpringBoot异常处理
1、默认异常页面
springboot遇到异常有默认处理机制,会默认访问url: /error,如果我们在templates目录下新建error.html文件,遇到异常会默认访问我们新建的error.html
springboot遇到异常有默认处理机制,会默认访问url: /error,如果我们在templates目录下新建error.html文件,遇到异常会默认访问我们新建的error.html
2、局部异常处理
异常处理和产生异常的方法必须在同一个类中。
以下为例子:/error和/myerror产生异常时都会进入自定义的errorException方法中继续执行
@RestController
@RequestMapping("/exception")
public class TestExceptionController {
@RequestMapping("/error")
public String getDefaultError() {
int a = 10/0;
return "error";
}
@RequestMapping("/myerror")
public String getError() {
int a = 10/0;
return "myError";
}
@ExceptionHandler(Exception.class)
public ModelAndView errorException() {
ModelAndView mv = new ModelAndView();
mv.setViewName("comError");
return mv;
}
}
3、全局异常处理
自定义类中使用:@ControllerAdvice + @ExceptionHandler(NullPointerException.class)
NullPointerException.class:可自己选择合适的异常类型,其他方法遇到这个类型的异常不需要格外的异常处理,会自动进入全局全局异常处理,按照类型进入对应的方法中
@ControllerAdvice
public class MyException{
@ExceptionHandler(NullPointerException.class)
public String error(Exception e) {
return "myError1";
}
@ExceptionHandler(Exception.class)
public String error(Exception e) {
return "myError2";
}
}
注意:全局异常处理和局部异常处理同时存在时,局部异常处理生效