Я пытаюсь отобразить сообщение, если в моей форме поле пустое, у меня есть @Size и @url, отображающие их сообщения, но я не могу отобразить сообщение аннотации @Notblank.
код JPA для переменной:
@Basic(optional = false)
@NotNull
@Column(name = "country")
@NotBlank (message = " field cannot be empty")
private String country;
код ошибки отображения в форме:
<tr>
<td><form:label path="country">Country</form:label></td>
<td><form:input path="country"/></td>
<td style="color:red"> <form:errors path="country"/> </td>
</tr>
используемые мной зависимости
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>5.4.9.Final</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>5.1.2.Final</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>2.0.1.Final</version>
</dependency>