2020
11-25
11-25
SpringBoot参数校验与国际化使用教程
一、参数校验springboot使用校验框架validation校验方法的入参SpringBoot的Web组件内部集成了hibernate-validator,所以我们这里并不需要额外的为验证再导入其他的包。1、bean中添加标签标签需要加在属性上,@NotEmpty标签String的参数不能为空@DatapublicclassDemoDto{@NotEmpty(message="名称不能为空")privateStringname;@Length(min=5,max=25,message="key的长度为5-25")privateStringkey;@Pattern(re...
继续阅读 >