Hibernate-validator和JSR303规范的@NotEmpty、@NotBlank、@NotNull

今天在使用Hibernate-validator和JSR303规范,对这三个注解有些混淆,摘抄如下。
验证框中@NotEmpty、@NotBlank、@NotNull乍一看还是容易弄混的。主要使用情况记录一下:<wbr style="color:rgb(68,68,68); font-size:16px; line-height:24px"><div style="color:rgb(68,68,68); font-size:16px; line-height:24px">@NotEmpty 用在集合类上面</div> <div style="color:rgb(68,68,68); font-size:16px; line-height:24px">@NotBlank 用在String上面</div> <div style="color:rgb(68,68,68); font-size:16px; line-height:24px">@NotNull 用在基本类型上</div> </wbr>

你可能感兴趣的:(Hibernate)