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

溫馨提示×

溫馨提示×

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

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

使用Spring MVC怎么對參數進行校驗

發布時間:2020-11-30 17:34:35 來源:億速云 閱讀:281 作者:Leah 欄目:編程語言

本篇文章為大家展示了使用Spring MVC怎么對參數進行校驗,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

1. 內嵌異常處理

如果只是這個controller的異常做單獨處理,那么就適合綁定這個controller本身的異常。

具體做法是使用注解@ExceptionHandler.

在這個controller中添加一個方法,并添加上述注解,并指明要攔截的異常。

@RequestMapping(value = "saveOrUpdate", method = RequestMethod.POST)
public String saveOrUpdate(HttpServletResponse response, @RequestBody Order order){
 CodeMsg result = null;
 try {
 result = orderService.saveOrUpdate(order);
 } catch (Exception e) {
 logger.error("save failed.", e);
 return this.renderString(response, CodeMsg.error(e.getMessage()));
 }
 return this.renderString(response, result);
}
@ResponseBody
@ResponseStatus(HttpStatus.BAD_REQUEST)
@ExceptionHandler(HttpMessageNotReadableException.class)
public CodeMsg messageNotReadable(HttpMessageNotReadableException exception, HttpServletResponse response){
 LOGGER.error("請求參數不匹配。", exception);
 return CodeMsg.error(exception.getMessage());
}

這里saveOrUpdate是我們想要攔截一樣的請求,而messageNotReadable則是處理異常的代碼。
@ExceptionHandler(HttpMessageNotReadableException.class)表示我要攔截何種異常。在這里,由于springmvc默認采用jackson作為json序列化工具,當反序列化失敗的時候就會拋出HttpMessageNotReadableException異常。具體如下:

{
 "code": 1,
 "msg": "Could not read JSON: Failed to parse Date value '2017-03-' (format: \"yyyy-MM-dd HH:mm:ss\"): Unparseable date: \"2017-03-\" (through reference chain: com.test.modules.order.entity.Order[\"serveTime\"]); nested exception is com.fasterxml.jackson.databind.JsonMappingException: Failed to parse Date value '2017-03-' (format: \"yyyy-MM-dd HH:mm:ss\"): Unparseable date: \"2017-03-\" (through reference chain: com.test.modules.order.entity.Order[\"serveTime\"])",
 "data": ""
}

這是個典型的jackson反序列化失敗異常,也是造成我遇見過的400原因最多的。通常是日期格式不對。

另外, @ResponseStatus(HttpStatus.BAD_REQUEST)這個注解是為了標識這個方法返回值的HttpStatus code。我設置為400,當然也可以自定義成其他的。

2. 批量異常處理

看到大多數資料寫的是全局異常處理,我覺得對我來說批量更合適些,因為我只是希望部分controller被攔截而不是全部。

springmvc提供了@ControllerAdvice來做批量攔截。

第一次看到注釋這么少的源碼,忍不住多讀幾遍。

Indicates the annotated class assists a "Controller".

表示這個注解是服務于Controller的。

Serves as a specialization of {@link Component @Component}, allowing for implementation classes to be autodetected through classpath scanning.

用來當做特殊的Component注解,允許使用者掃描發現所有的classpath。

It is typically used to define {@link ExceptionHandler @ExceptionHandler},
 * {@link InitBinder @InitBinder}, and {@link ModelAttribute @ModelAttribute}
 * methods that apply to all {@link RequestMapping @RequestMapping} methods.

典型的應用是用來定義xxxx.

One of {@link #annotations()}, {@link #basePackageClasses()},
 * {@link #basePackages()} or its alias {@link #value()}
 * may be specified to define specific subsets of Controllers
 * to assist. When multiple selectors are applied, OR logic is applied -
 * meaning selected Controllers should match at least one selector.

這幾個參數指定了掃描范圍。

the default behavior (i.e. if used without any selector),
 * the {@code @ControllerAdvice} annotated class will
 * assist all known Controllers.

默認掃描所有的已知的的Controllers。

Note that those checks are done at runtime, so adding many attributes and using
 * multiple strategies may have negative impacts (complexity, performance).

注意這個檢查是在運行時做的,所以注意性能問題,不要放太多的參數。

說的如此清楚,以至于用法如此簡單。

@ResponseBody
@ControllerAdvice("com.api")
public class ApiExceptionHandler extends BaseClientController {
 private static final Logger LOGGER = LoggerFactory.getLogger(ApiExceptionHandler.class);
 /**
  *
  * @param exception UnexpectedTypeException
  * @param response
  * @return
  */
 @ResponseStatus(HttpStatus.BAD_REQUEST)
 @ExceptionHandler(UnexpectedTypeException.class)
 public CodeMsg unexpectedType(UnexpectedTypeException exception, HttpServletResponse response){
  LOGGER.error("校驗方法太多,不確定合適的校驗方法。", exception);
  return CodeMsg.error(exception.getMessage());
 }
 @ResponseStatus(HttpStatus.BAD_REQUEST)
 @ExceptionHandler(HttpMessageNotReadableException.class)
 public CodeMsg messageNotReadable(HttpMessageNotReadableException exception, HttpServletResponse response){
  LOGGER.error("請求參數不匹配,request的json格式不正確", exception);
  return CodeMsg.error(exception.getMessage());
 }
 @ResponseStatus(HttpStatus.BAD_REQUEST)
 @ExceptionHandler(Exception.class)
 public CodeMsg ex(MethodArgumentNotValidException exception, HttpServletResponse response){
  LOGGER.error("請求參數不合法。", exception);
  BindingResult bindingResult = exception.getBindingResult();
  String msg = "校驗失敗";
  return new CodeMsg(CodeMsgConstant.error, msg, getErrors(bindingResult));
 }
 private Map<String, String> getErrors(BindingResult result) {
  Map<String, String> map = new HashMap<>();
  List<FieldError> list = result.getFieldErrors();
  for (FieldError error : list) {
   map.put(error.getField(), error.getDefaultMessage());
  }
  return map;
 }
}

3. Hibernate-validate

使用參數校驗如果不catch異常就會返回400. 所以這個也要規范一下。

3.1 引入hibernate-validate

<dependency> 
 <groupId>org.hibernate</groupId> 
 <artifactId>hibernate-validator</artifactId> 
 <version>5.0.2.Final</version> 
</dependency>
<mvc:annotation-driven validator="validator" />
<bean id="validator" class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean">
 <property name="providerClass" value="org.hibernate.validator.HibernateValidator"/>
 <property name="validationMessageSource" ref="messageSource"/>
</bean>

3.2 使用

在實體類字段上標注要求

public class AlipayRequest {
 @NotEmpty
 private String out_trade_no;
 private String subject;
 @DecimalMin(value = "0.01", message = "費用最少不能小于0.01")
 @DecimalMax(value = "100000000.00", message = "費用最大不能超過100000000")
 private String total_fee;
 /**
  * 訂單類型
  */
 @NotEmpty(message = "訂單類型不能為空")
 private String business_type;
 //....
}

controller里添加@Valid

@RequestMapping(value = "sign", method = RequestMethod.POST)
 public String sign(@Valid @RequestBody AlipayRequest params
 ){
  ....
 }

4.錯誤處理

前面已經提到,如果不做處理的結果就是400,415. 這個對應Exception是MethodArgumentNotValidException,也是這樣:

@ResponseStatus(HttpStatus.BAD_REQUEST)
@ExceptionHandler(Exception.class)
public CodeMsg ex(MethodArgumentNotValidException exception, HttpServletResponse response){
 LOGGER.error("請求參數不合法。", exception);
 BindingResult bindingResult = exception.getBindingResult();
 String msg = "校驗失敗";
 return new CodeMsg(CodeMsgConstant.error, msg, getErrors(bindingResult));
}
private Map<String, String> getErrors(BindingResult result) {
 Map<String, String> map = new HashMap<>();
 List<FieldError> list = result.getFieldErrors();
 for (FieldError error : list) {
  map.put(error.getField(), error.getDefaultMessage());
 }
 return map;
}

返回結果:

{
 "code": 1,
 "msg": "校驗失敗",
 "data": {
 "out_trade_no": "不能為空",
 "business_type": "訂單類型不能為空"
 }
}

大概有這么幾個限制注解:

/**
 * Bean Validation 中內置的 constraint  
 * @Null 被注釋的元素必須為 null  
 * @NotNull 被注釋的元素必須不為 null  
 * @AssertTrue  被注釋的元素必須為 true  
 * @AssertFalse 被注釋的元素必須為 false  +
 * @Min(value)  被注釋的元素必須是一個數字,其值必須大于等于指定的最小值  
 * @Max(value)  被注釋的元素必須是一個數字,其值必須小于等于指定的最大值  
 * @DecimalMin(value) 被注釋的元素必須是一個數字,其值必須大于等于指定的最小值  
 * @DecimalMax(value) 被注釋的元素必須是一個數字,其值必須小于等于指定的最大值  
 * @Size(max=, min=) 被注釋的元素的大小必須在指定的范圍內  
 * @Digits (integer, fraction)  被注釋的元素必須是一個數字,其值必須在可接受的范圍內  
 * @Past 被注釋的元素必須是一個過去的日期  
 * @Future  被注釋的元素必須是一個將來的日期  
 * @Pattern(regex=,flag=) 被注釋的元素必須符合指定的正則表達式  
 * Hibernate Validator 附加的 constraint  
 * @NotBlank(message =) 驗證字符串非null,且長度必須大于0  
 * @Email 被注釋的元素必須是電子郵箱地址  
 * @Length(min=,max=) 被注釋的字符串的大小必須在指定的范圍內  
 * @NotEmpty 被注釋的字符串的必須非空  
 * @Range(min=,max=,message=) 被注釋的元素必須在合適的范圍內 
 */

上述內容就是使用Spring MVC怎么對參數進行校驗,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

大石桥市| 阳东县| 满城县| 上高县| 凉城县| 观塘区| 南靖县| 武宣县| 新余市| 丽水市| 玛纳斯县| 维西| 宿松县| 格尔木市| 南昌市| 大庆市| 龙陵县| 米脂县| 杭锦旗| 达孜县| 临猗县| 石渠县| 两当县| 株洲县| 六盘水市| 无锡市| 神农架林区| 福贡县| 桑日县| 横山县| 巫溪县| 巧家县| 小金县| 两当县| 上饶市| 上杭县| 尼木县| 新余市| 明星| 天镇县| 和静县|