異常に直面しますか?それともtryですか?この統一処理異常神器をお勧めします
4033 ワード
コラムへようこそ:Javaアーキテクチャ技術の進歩.中にはbatj面の試験問題集錦がたくさん入っていて、いろいろな技術が共有されています.良い文章があれば投稿を歓迎します.
前言
異常はどう処理しますか?以前のプロジェクトは
コードケース
マイクロサービス、前後が分離した時代、テンプレートを使う仲間は少ないだろう.多くは
例外プロセッサ
カスタム例外
ページレスポンス
デモ
古典的な例外をシミュレートしてみました.
フロント出力:
バックグラウンド印刷:
小結
さっぱりしているのか、もう
前言
異常はどう処理しますか?以前のプロジェクトは
Controller
階でtry
階で、その後もAOP
と書いて異常ブロック処理を実現したことがある.しかし、ここでは仲間に異常神器を統一的に処理することをお勧めします.コードケース
マイクロサービス、前後が分離した時代、テンプレートを使う仲間は少ないだろう.多くは
Json
のデータを返す.壁割れは、@RestControllerAdvice
を使用することを推奨し、@ExceptionHandler
、@InitBinder
、@ModelAttribute
を定義し、すべての@RequestMapping
に適用することができます.例外プロセッサ
/**
*
*/
@RestControllerAdvice
public class RrExceptionHandler {
private Logger logger = LoggerFactory.getLogger(getClass());
@ExceptionHandler(Exception.class)
public Result handleException(Exception e){
logger.error(e.getMessage(), e);
return Result.error();
}
/**
*
*/
@ExceptionHandler(RrException.class)
public Result handleRRException(RrException e){
Result r = new Result();
r.put("code", e.getCode());
r.put("msg", e.getMessage());
return r;
}
@ExceptionHandler(DuplicateKeyException.class)
public Result handleDuplicateKeyException(DuplicateKeyException e){
logger.error(e.getMessage(), e);
return Result.error(" ");
}
}
カスタム例外
/**
*
*
* https://blog.52itstyle.vip
* 2019 8 15
*/
public class RrException extends RuntimeException {
private static final long serialVersionUID = 1L;
private String msg;
private int code = 500;
public RrException(String msg) {
super(msg);
this.msg = msg;
}
public RrException(String msg, Throwable e) {
super(msg, e);
this.msg = msg;
}
public RrException(String msg, int code) {
super(msg);
this.msg = msg;
this.code = code;
}
public RrException(String msg, int code, Throwable e) {
super(msg, e);
this.msg = msg;
this.code = code;
}
public String getMsg() {
return msg;
}
public void setMsg(String msg) {
this.msg = msg;
}
public int getCode() {
return code;
}
public void setCode(int code) {
this.code = code;
}
}
ページレスポンス
/**
*
* @Author 2012
* @Date 2019 1 21
*/
public class Result extends HashMap {
private static final long serialVersionUID = 1L;
public Result() {
put("code", 0);
}
public static Result error() {
return error(500, " , ");
}
public static Result error(String msg) {
return error(500, msg);
}
public static Result error(int code, String msg) {
Result r = new Result();
r.put("code", code);
r.put("msg", msg);
return r;
}
public static Result ok(Object msg) {
Result r = new Result();
r.put("msg", msg);
return r;
}
public static Result ok(Map map) {
Result r = new Result();
r.putAll(map);
return r;
}
public static Result ok() {
return new Result();
}
@Override
public Result put(String key, Object value) {
super.put(key, value);
return this;
}
}
デモ
古典的な例外をシミュレートしてみました.
@RequestMapping("eatChicken")
public Result eatChicken() {
String = null;
if( .equals(" ")){
System.out.println(" ");
}
return Result.ok();
}
フロント出力:
{"msg":" , ","code":500}
バックグラウンド印刷:
java.lang.NullPointerException: null
at com.itstyle.chicken.module.tools.web.ArticleController.get(ArticleController.java:35)
小結
さっぱりしているのか、もう
try
はいらない!!!