Springboot全局异常处理GlobalExceptionHandler

Springboot的全局异常查是通过两个注解@ControllerAdvice和@ExceptionHandler来实现的。

只有代码出错或者throw出来的异常才会被捕捉处理,如果被catch的异常,就不会被捕捉,除非catch之后再throw异常。

@ControllerAdvice:增强型控制器,对于控制器的全局配置放在同一个位置,全局异常的注解,放在类上。

@ControllerAdvice默认只会处理controller层抛出的异常,如果需要处理service层的异常,需要定义一个自定义的MyException来继承RuntimeException类,然后@ExceptionHandler(MyException)即可。

@ExceptionHandler:指明需要处理的异常类型以及子类。注解放在方法上面。

例子:

@ControllerAdvice
public class GlobalExceptionHandler {

    @ExceptionHandler()
    public ResponseEntity exceptionHandle(Exception e){ // 处理方法参数的异常类型
        return null;//自己需要实现的异常处理
    }

    @ExceptionHandler(RuntimeException.class)
    @ResponseBody
    public ResponseEntity handle(BaseException e){
        return null; //自己需要实现的异常处理
    }

@ExceptionHandler(RuntimeException.class): 会先查看异常是否属于RuntimeException异常以及其子类,如果是的话,就用这个方法进行处理。

一个方法处理多个异常类的异常:@ExceptionHandler(value={RuntimeException.class,MyRuntimeException.class})

@ExceptionHandler():会根据方法参数的异常类型进行处理。

有多个@ExceptionHandler注解的方法时,会根据抛出异常类去寻找处理方法,如果没有,就往上找父类,直到找到为止。

 

 

 

 

你可能感兴趣的:(Springboot)