javax.validation.constraints中@NotEmpty,@NotNull,@NotBlank

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/tangyaya8/article/details/82994838

@NotEmpty

The annotated element must not be {@code null} nor empty. Supported types are:
不能是null
不能是空字符
集合框架中的元素不能为空

@NotNul

被修饰元素不能为null

@NotBlank

The annotated element must not be {@code null} and must contain at least one
non-whitespace character.
这个注解用来判断字符串或者字符

猜你喜欢

转载自blog.csdn.net/tangyaya8/article/details/82994838