NotNull NotEmpty NotBlank区别 趴不住了快跑 2022-04-29 892 阅读1分钟 javax.validation.constraints;跟org.hibernate.validator.constraints都一样: @NotNull:不能为null,但可以为empty,用在基本类型上 @NotEmpty:不能为null,而且长度必须大于0,用在集合类上面 @NotBlank:只能作用在String上,不能为null,而且调用trim()后,长度必须大于0