91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

SpringBoot利用validation-api如何實現參數校驗

發布時間:2020-11-04 16:51:51 來源:億速云 閱讀:1459 作者:Leah 欄目:開發技術

這期內容當中小編將會給大家帶來有關SpringBoot利用validation-api如何實現參數校驗,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

ValidationApi框架就是用來解決參數校驗中代碼冗余問題,ValidationApi框架提供一些注解用來幫助我們對請求參數進行校驗:

SpringBoot利用validation-api如何實現參數校驗

SpringBoot使用validation-api實現參數校驗

注入依賴

<!--參數校驗-->
<dependency>
  <groupId>javax.validation</groupId>
  <artifactId>validation-api</artifactId>
  <version>2.0.1.Final</version>
</dependency>

<!--提供一些字符串操作-->
<dependency>
  <groupId>org.apache.commons</groupId>
  <artifactId>commons-lang3</artifactId>
  <version>3.3.2</version>
</dependency>

<!--lombok-->
<dependency>
  <groupId>org.projectlombok</groupId>
  <artifactId>lombok</artifactId>
  <version>1.18.2</version>
  <optional>true</optional>
</dependency>

<!--knife4j接口-->
<dependency>
  <groupId>com.github.xiaoymin</groupId>
  <artifactId>knife4j-spring-boot-starter</artifactId>
  <version>2.0.4</version>
</dependency>

UserPojoReq.java請求封裝類

如果成員變量是其他對象實體,該變量必須加 @Valid,否則嵌套中的驗證不生效

@Setter
@Getter
@ToString
@ApiModel("用戶對象")
public class UserPojoReq extends Request implements Serializable {
  private static final long serialVersionUID = -354657839724457905L;

  @ApiModelProperty(required = true, notes = "主鍵", example = "123")
  private String id;

  @ApiModelProperty(required = true, notes = "用戶名", example = "luo")
  @NotNull(message = "用戶姓名為必填項,不得為空")
  @Size(min = 2,max = 20,message = "用戶名長度要在2—8個字符")
  private String name;

  @ApiModelProperty(required = true, notes = "消息", example = "消息")
  private String msg;

}

CouponTypeEnum.class :錯誤碼枚舉類

@Getter
public enum CouponTypeEnum {

  PARAMETER_ERROR(1001, "請求參數有誤!"),
  UNKNOWN_ERROR(9999, "未知的錯誤!”);

  /**
   * 狀態值
   */
  private int couponType;


  /**
   * 狀態描述
   */
  private String couponTypeDesc;

  CouponTypeEnum(int couponType, String couponTypeDesc){
    this.couponType = couponType;
    this.couponTypeDesc = couponTypeDesc;
  }

  public static String getDescByType(int couponType) {
    for (CouponTypeEnum type : CouponTypeEnum.values()) {
      if (type.couponType == couponType) {
        return type.couponTypeDesc;
      }
    }
    return null;
  }


  public String getcouponTypeStr(){
    return String.valueOf(this.couponType);
  }
}

BusinessException.java:自定義業務異常類

/**
 * 業務自定義異常
 */
@Getter
public class BusinessException extends RuntimeException {

  private static final long serialVersionUID = -1895174013651345407L;
  private final CouponTypeEnum errorCode;
  private String primaryErrorCode;
  private String primaryErrorMsg;
  private String primaryErrorIP;

  public BusinessException(CouponTypeEnum errorCode) {
    this(errorCode, errorCode.getCouponTypeDesc());
  }
  public BusinessException(CouponTypeEnum errorCode, String message) {
    super(message);
    this.errorCode = errorCode;
  }
  public BusinessException(CouponTypeEnum errorCode, String message,String primaryErrorCode,String primaryErrorMsg,String primaryErrorIP) {
    super(message);
    this.errorCode = errorCode;
    this.primaryErrorCode=primaryErrorCode;
    this.primaryErrorMsg=primaryErrorMsg;
    this.primaryErrorIP=primaryErrorIP;
  }
  public BusinessException(CouponTypeEnum errorCode,String primaryErrorCode,String primaryErrorMsg,String primaryErrorIP) {
    this(errorCode, errorCode.getCouponTypeDesc());
    this.primaryErrorCode=primaryErrorCode;
    this.primaryErrorMsg=primaryErrorMsg;
    this.primaryErrorIP=primaryErrorIP;
  }

}

GlobalExceptionHandler.class 攔截異常并統一處理

  1. MissingServletRequestParameterException:必填項為null異常
  2. HttpMessageNotReadableException:參數類型不匹配異常
  3. MethodArgumentNotValidException:JSON校驗失敗異常(比如長度等)
  4. BusinessException:自定義的異常
  5. Exception:其他異常
@RestControllerAdvice("com.luo.producer.controller")
@Slf4j
public class GlobalExceptionHandler {
  
  
  /**
   * 忽略參數異常處理器
   *
   * @param e 忽略參數異常
   * @return Response
   */
  @ResponseStatus(HttpStatus.BAD_REQUEST)
  @ExceptionHandler(MissingServletRequestParameterException.class)
  public Response parameterMissingExceptionHandler(MissingServletRequestParameterException e) {
    log.error("", e);
    return new Response(CouponTypeEnum.PARAMETER_ERROR.getcouponTypeStr(), "請求參數 " + e.getParameterName() + " 不能為空");
  }


  /**
   * 缺少請求體異常處理器
   *
   * @param e 缺少請求體異常
   * @return Response
   */
  @ResponseStatus(HttpStatus.BAD_REQUEST)
  @ExceptionHandler(HttpMessageNotReadableException.class)
  public Response parameterBodyMissingExceptionHandler(HttpMessageNotReadableException e) {
    log.error("", e);
    return new Response(CouponTypeEnum.PARAMETER_ERROR.getcouponTypeStr(), "參數體不能為空");
  }


  /**
   * 參數效驗異常處理器
   *
   * @param e 參數驗證異常
   * @return ResponseInfo
   */
  @ResponseStatus(HttpStatus.BAD_REQUEST)
  @ExceptionHandler(MethodArgumentNotValidException.class)
  public Response parameterExceptionHandler(MethodArgumentNotValidException e) {
    log.error("", e);
    // 獲取異常信息
    BindingResult exceptions = e.getBindingResult();
    // 判斷異常中是否有錯誤信息,如果存在就使用異常中的消息,否則使用默認消息
    if (exceptions.hasErrors()) {
      List<ObjectError> errors = exceptions.getAllErrors();
      if (!errors.isEmpty()) {
        // 這里列出了全部錯誤參數,按正常邏輯,只需要第一條錯誤即可
        FieldError fieldError = (FieldError) errors.get(0);
        return new Response(CouponTypeEnum.PARAMETER_ERROR.getcouponTypeStr(), fieldError.getDefaultMessage());
      }
    }
    return new Response(CouponTypeEnum.PARAMETER_ERROR);
  }


  /**
   * 自定義參數錯誤異常處理器
   *
   * @param e 自定義參數
   * @return ResponseInfo
   */
  @ResponseStatus(HttpStatus.BAD_REQUEST)
  @ExceptionHandler({BusinessException.class})
  public Response paramExceptionHandler(BusinessException e) {
    log.error("", e);
    // 判斷異常中是否有錯誤信息,如果存在就使用異常中的消息,否則使用默認消息
    if (!StringUtils.isEmpty(e.getMessage())) {
      return new Response(CouponTypeEnum.PARAMETER_ERROR.getcouponTypeStr(), e.getMessage());
    }
    return new Response(CouponTypeEnum.PARAMETER_ERROR);
  }


  /**
   * 其他異常
   *
   * @param e
   * @return
   */
  @ResponseStatus(HttpStatus.BAD_REQUEST)
  @ExceptionHandler({Exception.class})
  public Response otherExceptionHandler(Exception e) {
    log.error("其他異常", e);
    // 判斷異常中是否有錯誤信息,如果存在就使用異常中的消息,否則使用默認消息
    if (!StringUtils.isEmpty(e.getMessage())) {
      return new Response(CouponTypeEnum.UNKNOWN_ERROR.getcouponTypeStr(), e.getMessage());
    }
    return new Response(CouponTypeEnum.UNKNOWN_ERROR);
  }
}

驗證

測試接口

@Valid被標記的實體將會開啟一個校驗的功能

@RequestBody:請求實體需要加上@RequestBody否則MethodArgumentNotValidException異常將會被識別成Exception異常,提示信息將與預期不符。

@RestController
@Slf4j
public class UserController {

  @PostMapping("/helloluo")
  @MyPermissionTag(value = "true")
  public String helloluo(@RequestBody @Valid UserPojoReq userPojoReq){
    return "Hello World”+userPojoReq;
  }
}

模擬請求參數,進行接口訪問:

SpringBoot利用validation-api如何實現參數校驗

上述就是小編為大家分享的SpringBoot利用validation-api如何實現參數校驗了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

武定县| 寻甸| 翁源县| 余庆县| 湟中县| 互助| 额济纳旗| 民勤县| 普宁市| 仙居县| 华阴市| 来凤县| 噶尔县| 阿鲁科尔沁旗| 沙洋县| 天峻县| 盖州市| 于田县| 清河县| 太和县| 石门县| 大英县| 合阳县| 墨脱县| 兴义市| 平昌县| 威远县| 井冈山市| 姚安县| 英山县| 绥中县| 临城县| 剑河县| 南城县| 彩票| 禄丰县| 松溪县| 灵丘县| 金堂县| 扬中市| 布拖县|