@NotBlank注解地正确使用
2018-05-08 本文已影响1130人
紫霞等了至尊宝五百年
- @NotNull:不能为null,但可以为empty
- @NotEmpty:不能为null,而且长度必须大于0
@NotBlank:只能作用在String上,不能为null,而且调用trim()后,长度必须大于0
案例:
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
注意在使用@NotBlank等注解时,一定要和@valid一起使用,不然@NotBlank不起作用
![](https://img.haomeiwen.com/i4685968/b6262eb0e3174e45.png)
![](https://img.haomeiwen.com/i4685968/e6e60cdccbe76599.png)