request response can be validated using javax annotation. However, need some help to have fixed length validation, as @Size(min=3, max=3). It is having message that ‘size must be between 3 and 3’. …
Tag: bean-validation
Validation issue with javax constraint
In a spring boot application, I have an entity where I put some annotation validation. @Max(value = 17) private String currency; @Max(value = 1) private String freq; @Max(value = 2) private String …
Conflict between ValidationMessages.properties files
I use to collect all my validation constraints in a common library. In the root of the jar I put a ValidationMessages_it.properties file. All works fine, if I put this library into a jsf 2 war project …
Is there an implementation of JSR-303 (bean validation) available?
I know there are non-standard frameworks such as commons-validator, and hibernate validator. I wanted to know if someone knows an implementation of the official standard.