首页 > 其他 > 详细

统一异常处理

时间:2020-12-03 15:09:47      阅读:19      评论:0      收藏:0      [点我收藏+]

统一异常处理

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

创建统一异常处理器

@ControllerAdvice
@Slf4j
public class GlobalExceptionHandler {
    //添加一个注解 ExceptionHandler
    @ExceptionHandler({Exception.class})
    @ResponseBody
    public R error(Exception e){
        e.printStackTrace();
        return R.error().message("执行了全局异常");
    }
    //自定义异常
    @ExceptionHandler({OnlineException.class})
    @ResponseBody
    public R error(OnlineException e){
        log.error(e.getMessage());
        e.printStackTrace();
        return R.error().code(e.getCode()).message(e.getMsg());
    }
}

测试

技术分享图片

自定义异常

创建自定义异常类

@Data
@AllArgsConstructor
@NoArgsConstructor
public class OnlineException extends RuntimeException {
    @ApiModelProperty(value = "状态码")
    private Integer code;
    private String msg;
    
}

业务中需要的位置抛出OnlineException

try {
    int a = 10/0;
}catch(Exception e) {
    throw new OnlineException(20001,"出现自定义异常");
}

添加异常处理方法

OnlineExceptionHandler.java中添加

@ExceptionHandler(OnlineException.class)
@ResponseBody
public R error(OnlineException e){
    e.printStackTrace();
    return R.error().message(e.getMsg()).code(e.getCode());
}

统一异常处理

原文:https://www.cnblogs.com/Courage129/p/14079176.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!