一、什么是统一异常处理

1、制造异常

除以0

  1. int a = 10/0;

image.png

2、什么是统一异常处理

我们想让异常结果也显示为统一的返回结果对象,并且统一处理系统的异常信息,那么需要统一异常处理

二、统一异常处理

1、创建统一异常处理器

在service-base中创建统一异常处理类GlobalExceptionHandler.java:

  1. /**
  2. * 统一异常处理类
  3. */
  4. @ControllerAdvice
  5. public class GlobalExceptionHandler {
  6. @ExceptionHandler(Exception.class)
  7. @ResponseBody
  8. public R error(Exception e){
  9. e.printStackTrace();
  10. return R.error();
  11. }
  12. }

2、测试

返回统一错误结果
image.png

三、处理特定异常

1、添加异常处理方法

GlobalExceptionHandler.java中添加

  1. @ExceptionHandler(ArithmeticException.class)
  2. @ResponseBody
  3. public R error(ArithmeticException e){
  4. e.printStackTrace();
  5. return R.error().message("执行了自定义异常");
  6. }

2、测试

image.png

四、自定义异常

1、创建自定义异常类

  1. @Data
  2. @AllArgsConstructor
  3. @NoArgsConstructor
  4. public class GuliException extends RuntimeException {
  5. @ApiModelProperty(value = "状态码")
  6. private Integer code;
  7. private String msg;
  8. }

2、业务中需要的位置抛出GuliException

  1. try {
  2. int a = 10/0;
  3. }catch(Exception e) {
  4. throw new GuliException(20001,"出现自定义异常");
  5. }

3、添加异常处理方法

GlobalExceptionHandler.java中添加

  1. @ExceptionHandler(GuliException.class)
  2. @ResponseBody
  3. public R error(GuliException e){
  4. e.printStackTrace();
  5. return R.error().message(e.getMsg()).code(e.getCode());
  6. }

4、测试
image.png