几个月前踩的坑吧,今天回忆一下。
1.@NotNull:不能为null,但可以为empty
2.@NotEmpty:不能为null,而且长度必须大于0
3.@NotBlank:只能作用在String上,不能为null,而且调用trim()后,长度必须大于0 ("test") 即:必须有实际字符
@NotEmpty 用在集合类上面
@NotBlank 用在String上面
@NotNull 用在基本类型上
1. String name = null;
@NotNull: false
@NotEmpty: false
@NotBlank: false
2. String name = "";
@NotNull: true
@NotEmpty: false
@NotBlank: false
3. String name = " ";
@NotNull: true
@NotEmpty: true
@NotBlank: false
4. String name = "Great answer!";
@NotNull: true
@NotEmpty: true
@NotBlank: true
来源:oschina
链接:https://my.oschina.net/u/1791398/blog/1553645