我们想让异常结果也显示为统一的返回结果对象,并且统一处理系统的异常信息,那么需要统一异常处理
@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;
}
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