Springboot中如何进⾏字段校验常⽤校验⼯具类:
1.  Hibernate Validate
依赖:
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>4.3.1.Final</version>
validation框架</dependency>
常⽤注解说明
注解说明
@Length(min=,max=,,message=)检查所属的字段的长度是否在min和max之间,只能⽤于字符串
@Range(min=,max=,message=)被注释的元素必须在合适的范围内
@Max该字段的值只能⼩于或等于该值
@Min该字段的值只能⼤于或等于该值
@NotNull不能为null
@NotBlank不能为空,检查时会将空格忽略
@NotEmpty不能为空,这⾥的空是指空字符串
@Pattern(regex=,flag=)被注释的元素必须符合指定的正则表达式
注:message字段为不符合校验规则时抛出的异常信息
使⽤
需要搭配在Controller中搭配@Validated或@Valid注解⼀起使⽤,@Validated和@Valid注解区别不是很⼤,⼀般情况下任选⼀个即可,区别如下:
注解@Validated@Valid
所属的包属于
org.springframework.validation.annotation
包下的,是spring提供的
属于javax.validation包下,是jdk给提供的
是否⽀
持分组
和排序
是否
虽然@Validated⽐@Valid更加强⼤,在@Valid之上提供了分组功能和验证排序功能,不过在实际项⽬中⼀直没有⽤到过。Hibernate-validate框架中的注解是需要加在实体中⼀起使⽤的:
定义⼀个实体
public class DataSetSaveVO {
//唯⼀标识符为空
@NotBlank(message = "user uuid is empty")
//⽤户名称只能是字母和数字
@Pattern(regexp = "^[a-z0-9]+$", message = "user names can only be alphabetic and numeric")
@Length(max = 48, message = "user uuid length over 48 byte")
private String userUuid;
//数据集名称只能是字母和数字
@Pattern(regexp = "^[A-Za-z0-9]+$", message = "data set names can only be letters and Numbers")
//⽂件名称过长
@Length(max = 48, message = "file name too long")
//⽂件名称为空
@NotBlank(message = "file name is empty")
private String name;
//数据集描述最多为256字节
@Length(max = 256, message = "data set description length over 256 byte")
//数据集描述为空
@NotBlank(message = "data set description is null")
private String description;
}
Controller层中的使⽤⽅法:在校验的实体DataSetSaveVO旁边添加@Valid或@Validated注解
@PostMapping
public ResponseVO createDataSet(@Valid @RequestBody DataSetSaveVO dataSetVO) {
return ResponseUtil.success(dataSetService.saveDataSet(dataSetVO));
}
1. commons-lang3
依赖:
<dependency>
<groupId>org.apachemons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.4</version>
</dependency>
常⽤⽅法说明:
⽅法说明
CollectionUtils.isEmpty判断集合是否为空,为null或者size==0,返回true
CollectionUtils.isNotEmpty判断集合是否为⾮空
StringUtils.isEmpty判断字符串是否为空
StringUtils.isNotEmpty判断字符串是否⾮空
StringUtils.isBlank 判断字符串是否为空,为null或者size==0或者只存在空⽩字符(如" "),则返回true
StringUtils.isNotBlank判断字符串是否为⾮空测试代码
//StringUtils.isEmpty
System.out.println(StringUtils.isEmpty(""));  //true
System.out.println(StringUtils.isEmpty("  "));  //false
//StringUtils.isNotEmpty
System.out.println(StringUtils.isNotEmpty(""));  //false
/
/StringUtils.isBlank
System.out.println(StringUtils.isBlank(""));  //true
System.out.println(StringUtils.isBlank(" "));  //true
//StringUtils.isNotBlank
System.out.println(StringUtils.isNotBlank(" "));  //false
List<Integer> emptyList = new ArrayList<>();
List<Integer> nullList = null;
List<Integer> notEmptyList = new ArrayList<>(); notEmptyList.add(1);
//CollectionUtils.isEmpty
System.out.println(CollectionUtils.isEmpty(emptyList));  //true System.out.println(CollectionUtils.isEmpty(nullList));  //true System.out.println(CollectionUtils.isEmpty(notEmptyList));  //false
//CollectionUtils.isNotEmpty
System.out.println(CollectionUtils.isNotEmpty(emptyList));  //false System.out.println(CollectionUtils.isNotEmpty(nullList));  //false System.out.println(CollectionUtils.isNotEmpty(notEmptyList));  //true

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。