zkclient 釋出訂閱機制 原理
阿新 • • 發佈:2020-12-02
統一異常處理
我們想讓異常結果也顯示為統一的返回結果物件,並且統一處理系統的異常資訊,那麼需要統一異常處理
建立統一異常處理器
@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());
}