亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring Boot自定義返回錯誤碼錯誤信息的方法

發布時間:2021-02-03 12:30:52 來源:億速云 閱讀:516 作者:小新 欄目:編程語言

這篇文章主要介紹了Spring Boot自定義返回錯誤碼錯誤信息的方法,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

 說明

?在實際的開發過程中,很多時候要定義符合自己業務的錯誤碼和錯誤信息,而不是統一的而不是統一的下面這種格式返回到調用端

INTERNAL_SERVER_ERROR(500, "Internal Server Error"),

下面我們來看看如何將我們自定義的錯誤碼和錯誤信息返回到調用端。

1 自定義錯誤碼

?首先我們要定義一個枚舉類

public enum ErrorEnum {
  /*
   * 錯誤信息
   * */
  E_20011(20011, "缺少必填參數"),
  ;
  private Integer errorCode;
  private String errorMsg;
  ErrorEnum(Integer errorCode, String errorMsg) {
    this.errorCode = errorCode;
    this.errorMsg = errorMsg;
  }
  public Integer getErrorCode() {
    return errorCode;
  }
  public String getErrorMsg() {
    return errorMsg;
  }

2 定義一個異常類

?定義一個異常類繼承RuntimeException類

public class BusinessException extends RuntimeException {
  private static final long serialVersionUID = 1L;
  private Integer code;
  /**
   * @param errorEnum 以錯誤的ErrorEnum做參數
   */
  public BusinessException(ErrorEnum errorEnum) {
    super(errorEnum.getErrorMsg());
    this.code = errorEnum.getErrorCode();
    this.resultJson = CommonUtil.errorJson(errorEnum);
  }
  public Integer getCode() {
    return code;
  }
  public void setCode(Integer code) {
    this.code = code;
  }
}

3 定義一個異常返回的模板類

?模板類定義了如何將異常通過什么形式進行返回。

public class ExceptionResponse {
  private String message;
  private Integer code;
  public ExceptionResponse(Integer code, String message) {
    this.message = message;
    this.code = code;
  }
  public static ExceptionResponse create(Integer code, String message) {
    return new ExceptionResponse(code, message);
  }
  public Integer getCode() {
    return code;
  }
  public String getMessage() {
    return message;
  }
}

4 定義全局處理 Controller 層異常

@ControllerAdvice
@Slf4j
public class ExceptionHandler {

  @ResponseBody
  @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
  @ExceptionHandler(Exception.class)
  public ExceptionResponse handleException(Exception ex) {
    if (ex instanceof BusinessException) {
      log.warn(ex.getMessage(), ex);
      BusinessException businessException = (BusinessException) ex;
      return ExceptionResponse.create(businessException.getCode(), businessException.getMessage());
    } else {
      log.error(ex.getMessage(), ex);
      return ExceptionResponse.create(HttpStatus.INTERNAL_SERVER_ERROR.value(), ex.getMessage());
    }
  }
}

5 演示效果

?定義Controller層

@PostMapping("test/exception")
  public String testException() {
    throw new BusinessException(ErrorEnum.E_20011);
  }

?通過postMan調用返回結果為

{ "message": "缺少必填參數", "code": 20011 }

感謝你能夠認真閱讀完這篇文章,希望小編分享的“Spring Boot自定義返回錯誤碼錯誤信息的方法”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

保靖县| 安仁县| 嵊泗县| 连城县| 嘉善县| 耿马| 平乐县| 西贡区| 勃利县| 新乐市| 阳西县| 综艺| 额尔古纳市| 凯里市| 包头市| 新野县| 客服| 新巴尔虎右旗| 怀来县| 大名县| 仙居县| 樟树市| 青岛市| 蒙山县| 罗山县| 新丰县| 仁化县| 霍山县| 宣武区| 凤庆县| 西林县| 安庆市| 尼木县| 武隆县| 诸城市| 马鞍山市| 邮箱| 三明市| 合水县| 渑池县| 乌兰县|