Bean属性校验

JSR303提供规范,其余框架实现规范。

  1. 添加JSR303规范,在SpringBoot中不用给出版本号
<dependency><groupId>javax.validation</groupId><artifactId>validation-api</artifactId>
</dependency>
  1. 添加实现技术
<dependency><groupId>org.hibernate.validator</groupId><artifactId>hibernate-validator</artifactId>
</dependency>

在需要校验的Bean上开启校验功能@Validated,然后使用JSR303规范中的注解去定义校验规则就好了。

@Data
@Component
@ConfigurationProperties(prefix = "my-server")
@Validated
public class DataSourceConfigBean {private String url;@Max(value = 5000, message = "最大不能超过5000")@Min(value = 500, message = "最小不能低于500")private int timeout;
}

当属性注入时,就会进行属性校验,测试一下

关于常用的校验规则有哪些?可以进入到JSR303注解包javax.validation.constraints下查看,这里给出一些常用的。

JSR303中常用的注解有:

注解说明
@AssertFalse断言为false
@AssertTrue断言为true
@Max整型最大值限制
@Min整型最小值限制
@DecimalMax适用于BigDecimal和String类型的属性
@Null值为null
@NotNull不为Null
@NotBlank不为空
@Pattern正则校验
@Digits是数字
@Email是邮箱
@Negative是负数
@Postiive是正数
@Future未来的时间
@Past过去的时间

本文链接:https://my.lmcjl.com/post/13016.html

展开阅读全文

4 评论

留下您的评论.