溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么在SpringBoot中實(shí)現(xiàn)統(tǒng)一異常處理

發(fā)布時(shí)間:2021-06-11 15:43:33 來(lái)源:億速云 閱讀:132 作者:Leah 欄目:編程語(yǔ)言

怎么在SpringBoot中實(shí)現(xiàn)統(tǒng)一異常處理,相信很多沒(méi)有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問(wèn)題出現(xiàn)的原因和解決方法,通過(guò)這篇文章希望你能解決這個(gè)問(wèn)題。

場(chǎng)景:針對(duì)異常處理,我們?cè)瓉?lái)的做法是一般在最外層捕獲異常即可,例如在Controller中

@Controller
public class HelloController {
 
  private static final Logger logger = LoggerFactory.getLogger(HelloController.class);
 
  @GetMapping(value = "/hello")
  @ResponseBody
  public Result hello() {
    try {
      //TODO 具體的邏輯省略……
    } catch (Exception e) {
      logger.error("hello接口異常={}", e);
      return ResultUtil.success(-1, "system error", null);
    }
    return ResultUtil.success(0, "success", null);
  }
}

這樣的話也能解決部分問(wèn)題,但是無(wú)法獲取到自己指定的異常,引入全局統(tǒng)一異常處理的話將會(huì)極大的改善代碼,減少冗余代碼的產(chǎn)生。

自定義異常類(lèi):注意要繼承自RuntimeException而不是Exception,繼承自Exception的話,當(dāng)拋出自定義異常時(shí)spring事務(wù)不會(huì)回滾

public class GlobalException extends RuntimeException {
 
  private Integer code; //因?yàn)槲倚枰獙惓P畔⒁卜祷亟o接口中,所以添加code區(qū)分
 
  public GlobalException(Integer code,String message) {
    super(message);  //把自定義的message傳遞個(gè)異常父類(lèi)
    this.code = code;
  }
 
  public Integer getCode() {
    return code;
  }
 
  public void setCode(Integer code) {
    this.code = code;
  }
}

自定義統(tǒng)一異常處理器:比較關(guān)鍵的兩個(gè)注解@ControllerAdvice、@ExceptionHandler

@ControllerAdvice
public class ExceptionHandle {
 
  @ResponseBody  //因?yàn)槲倚枰獙伋龅漠惓7祷亟o接口,所以加上此注解
  @ExceptionHandler
  public Result handle(Exception e) {
    if (e instanceof GlobalException) {
      GlobalException ge = (GlobalException) e;
      return ResultUtil.success1(ge.getCode(), ge.getMessage());
    }
    return ResultUtil.success1(-1, "system error!");
  }
 
}

寫(xiě)個(gè)測(cè)試類(lèi)測(cè)試下

@GetMapping(value = "/hello1")
@ResponseBody
public Result hello(@RequestParam(value = "age", defaultValue = "50", required = false) Integer age) throws GlobalException {
  if (age < 10) {
    throw new GlobalException(ConstantEnum.LESS10.getCode(), ConstantEnum.LESS10.getMsg());
  } else if (age > 50) {
    throw new GlobalException(ConstantEnum.MORE50.getCode(), ConstantEnum.MORE50.getMsg());
  } else {
    return ResultUtil.success1(0, "success");
  }
}

把code、message封裝在了ConstantEnum枚舉里面,方便統(tǒng)一維護(hù)

public enum ConstantEnum {
 
  ERROR(-1, "system error!"),
  SUCCESS(100, "success"),
  LESS10(101, "自定義異常信息-我小于10歲"),
  MORE50(5001, "自定義異常信息-我大于50歲");
 
  private Integer code;
  private String msg;
 
  public Integer getCode() {
    return code;
  }
 
  public String getMsg() {
    return msg;
  }
 
  ConstantEnum(Integer code, String msg) {
    this.code = code;
    this.msg = msg;
  }
}

怎么在SpringBoot中實(shí)現(xiàn)統(tǒng)一異常處理

看完上述內(nèi)容,你們掌握怎么在SpringBoot中實(shí)現(xiàn)統(tǒng)一異常處理的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI