Top "Hibernate-validator" questions

Hibernate Validator is the reference implementation for JSR 380 - Bean Validation 2.0

@Size(min, max) but not required

Hi In my spring webapp I have a password variable which I want to be at least 0 characters or more …

java spring hibernate-validator
Spring JSR303 validation doesn't work like described in Spring Documentation

I tried implementing validation for my web application like described in section 5.7.4.3 of the Spring 3.0 documentation: <bean class="org.…

validation spring hibernate-validator bean-validation
Javax Bean Validation : @Max and @Min is not working

I have following model class import javax.validation.constraints.Max; import javax.validation.constraints.Min; public class Person { @Max(value = 10, …

java bean-validation hibernate-validator server-side-validation
How to localize Bean Validation messages

I have a class and using annotation to validate the class properties. My web page (jsf2.2/primefaces/maven) is multilanguage (…

localization bean-validation hibernate-validator
JPA Validation of Email String Collection

I have a list of String in my bean. These strings are email and I would like to validate them. @…

hibernate bean-validation hibernate-validator
Spring MVC Validation of Inherited Classes

I have a hard time believing I'm the only one who wants to do this, but I can't find any …

java spring validation spring-mvc hibernate-validator