Bean Validation, previously commonly called just "JSR-303", is an annotation based validation framework for javabean properties and parameters of arbitrary methods.
Is there an implementation of (or third-party implementation for) cross field validation in Hibernate Validator 4.x? If not, what is …
validation hibernate-validator bean-validationWhat configuration is needed to use annotations from javax.validation.constraints like @Size, @NotNull, etc.? Here's my code: import javax.…
java spring annotations constraints bean-validationI'm looking to do a little custom validation with JSR-303 javax.validation. I have a field. And If a certain …
java validation bean-validationI'm using JPA 2.0/Hibernate validation to validate my models. I now have a situation where the combination of two fields …
java jpa jpa-2.0 bean-validationI am currently working on Spring MVC web app and trying to hook up validation using the @Valid annotation. When …
java spring bean-validation hibernate-validatorI have to update information in my database. FacadePatient.java class code: public Patient update(Patient p) { Patient pat = em.…
jakarta-ee bean-validation hibernate-validatorI want to allow only positive integers for number fields including zero. How can I define this validation using JSR 303 ? …
java bean-validationI have a variable name in a bean. I want to add @Pattern validation to accept only alphanumeric. Currently, I …
java regex annotations bean-validationI am using Hibernate Validation annotations in my JSF managed bean. When I use @NotNull, @NotBlank or @NotEmpty they doesn't …
jsf tomcat jsf-2 bean-validationI can't seem to be able to find a summary that distinguishes the difference between these three annotations.
java hibernate validation bean-validation