@NotBlank注解地正确使用
转载网址为:https://blog.youkuaiyun.com/qq_39964694/article/details/81183701.
@NotNull:不能为null,但可以为empty
@NotEmpty:不能为null,而且长度必须大于0
@NotBlank:只能作用在String上,不能为null,而且调用trim()后,长度必须大于0
案例
注意在使用@NotBlank等注解时,一定要和@valid一起使用,不然@NotBlank不起作用