cloudopt-next-validator 是 Cloudopt Next 自带的一个优雅的数据校验器,你只需要在 pojo 类需要校验的字段上增加相应的注解即可。
<dependency>
<groupId>net.cloudopt.next</groupId>
<artifactId>cloudopt-next-validator</artifactId>
</dependency>
public class Account(){
@NotNull(message="If the message contains text, you can get it in case of error")
private String test;
// get and set
}
Account account=new Account();
ValidatorTool.validate(account); //验证所有加了注解的字段并获取验证结果对象
ValidatorTool.validate(account,"password", "username"); //只验证部分字段
System.out.println(ValidatorTool.validate(account).getResult());
System.out.println(ValidatorTool.validate(account).getMessage());
data class Account(){
@get:NotNull(message="If the message contains text, you can get it in case of error")
var test:String=""
}
Account account=new Account()
ValidatorTool.validate(account) //验证所有加了注解的字段并获取验证结果对象
ValidatorTool.validate(account,"password", "username") //只验证部分字段
println(ValidatorTool.validate(account).result)
println(ValidatorTool.validate(account).message)
目前已经自带了以下的注解:
//用于boolean字段,该字段只能为true。
@AssertTrue
//该字段的值只能为false。
@AssertFalse
//对信用卡号进行一个大致的验证。
@CreditCardNumber
//只能小于或等于该值。
@DecimalMax
//只能大于或等于该值。
@DecimalMin
//检查是否是一种数字的整数、分数,小数位数的数字。
@Digits(integer=2,fraction=20)
//检查是否是一个有效的email地址。
//检查该字段的日期是否是属于将来的日期。
@Future
//检查所属的字段的长度是否在min和max之间,只能用于字符串。
@Length(min=1,max=3)
//该字段的值只能小于或等于该值。
@Max(value = 4)
//该字段的值只能大于或等于该值。
@Min(value = 4)
//不能为null。
@NotNull
//不能为空,检查时会将空格忽略。
@NotBlank
//不能为空,这里的空是指空字符串。
@NotEmpty
//检查该字段为空。
@Null
//检查该字段的日期是在过去。
@Past
//检查该字段的size是否在min和max之间,可以是字符串、数组、集合、Map等。
@Size(min=1, max=3)
//检查是否是一个有效的URL,如果提供了protocol,host等,则该URL还需满足提供的条件。
@URL(protocol=,host,port)
//如果使用这个注解,那么该变量中包含的对象如果也有校验器注解的话就会自动进行校验。
@Valid
//检查是否是信用卡卡号
@CreditCardNumber(ignoreNonDigitCharacters=)
//是否是个链接
@URL(protocol=, host=, port= regexp=, flags=)
//是否是boolean或者int或者double,根据所需在value那里传入即可。如value="boolean"
@Type(value=)
//是否在这个数组(字符串)中
@Inside(value={})
//是否是中文或者不是中文。如果为true则要求变量必须是中文,如果为false则要求变量不能为中文
@Chinese(value=boolean)
当前内容版权归 cloudoptlab 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 cloudoptlab .