Java – Hibernate @NotEmpty annotation equivalent in Javax.package or alternative

annotationsbean-validationjavanotnullvalidation

Is there a way to implement @NotEmpty hibernate validation without writing custom validation?
javax.validation package does not contain this annotation. Only @NotNull. But it does not validate for Non-null but empty values. So I would like to see an alternative for @NotEmpty.

Using @Pattern? How?

Best Answer

NotEmpty is just a combination of @NotNull and @Size(min=1).

Related Topic