码迷,mamicode.com
首页 > 编程语言 > 详细

spring 方法验证参数

时间:2019-03-04 14:19:12      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:sage   one   spring   handle   使用   方法   orm   new   err   

1:实体使用 @Valid    使用 validation  类注解

2:String 使用 

  controller 添加 @Validated

 @NotBlank(message = "id不能为空") @RequestParam(value="mercId")
异常捕捉
/**
* 参数验证String
* 弥补@RequestParam参数验证String 无法解决空字符串
* 使用:
* 1:controller 加 @Validated
* 2:方法加@NotBlank(message = "id不能为空") @RequestParam(value="mercId")
* @param e
* @return
*/
@ExceptionHandler(value = {ConstraintViolationException.class})
public R ConstraintViolationException(ConstraintViolationException e) {
String errorMes = "校验失败:";
log.error(errorMes, e);
return R.error("错误的请求->cause:" + e.getMessage());
}

3:integer 使用
@RequestParam(value="mercId")

spring 方法验证参数

标签:sage   one   spring   handle   使用   方法   orm   new   err   

原文地址:https://www.cnblogs.com/mytzq/p/10470337.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!