Tagged Questions

Hibernate Validator is the reference implementation for JSR 303 - Bean Validation

learn more… | top users | synonyms

41
votes
9answers
19k views

Cross field validation with Hibernate Validator (JSR 303)

Is there an implementation of (or third-party implementation for) cross field validation in Hibernate Validator 4.x? If not, what is the cleanest way to implement a cross field validator? As an ...
8
votes
1answer
606 views

Hibernate Validation of Collections of Primitives

I want to be able to do something like: @Email public List<String> getEmailAddresses() { return this.emailAddresses; } In other words, I want each item in the list to be validated as an ...
8
votes
3answers
563 views

Generating a error code per property in Hibernate Validator

I am looking at using Hibernate Validator for a requirement of mine. I want to validate a JavaBean where properties may have multiple validation checks. For example: class MyValidationBean { ...
8
votes
3answers
11k views

Spring MVC 3 Validation - Unable to find a default provider

I get an error when trying to set up Spring MVC validation. javax.validation.ValidationException: Unable to find a default provider I read in the documents that the default provider they use is the ...
6
votes
1answer
226 views

Multiple validators on one field with JSF bean validation

i am trying to make multiple validation one one field @NotBlank(message = "{name.required}") @Max(value = 25, message = "{long.value}") public String name; JSF: <h:inputText ...
5
votes
1answer
358 views

How do I apply AOP advice to a ConstraintValidator<A,T> in Spring?

I am attempting to write my own Validator (as per the JSR-303 specification) under Spring 3.0.x. I annotated the isValid(Serializable, CosntraintValidatorContext) method with @Transactional, but it ...
5
votes
1answer
443 views

nested Annotation List in Scala

Help, how do i do stuff like the following in Scala? import org.hibernate.validator.constraints.ScriptAssert @ScriptAssert.List({ @ScriptAssert(script = "...", lang = "javascript"), ...
4
votes
1answer
329 views

Control validation annotations order?

i have a field that have two validation annotations @NotEmpty @Length(min=3,max=100) String firstName; i am just curious to know how hibernate is specifying the order of which validation annotation ...
4
votes
1answer
920 views

How do I dynamically resolve message parameters with Hibernate Validator?

I'm using Hibernate Validator and would like to resolve the category's name in an error message. Consider this simple scenario: public class Category { private String name; } public class ...
4
votes
1answer
2k views

Hibernate Validator, custom ResourceBundleLocator and Spring

I'm trying to override default ResourceBundleLocator in hibernate validation 4.1. So far it works perfectly, but the only examples of its usage include java code to instantiate ValidationFactory. ...
3
votes
2answers
161 views

Hibernate Validator - @Length - How to specify separate message for min and max?

I am using Hibernate validator for form validation in my web-app. I am using the @Length annotation for my String attribute as follows: @Length(min = 5, message = "The field must be at least 5 ...
3
votes
2answers
241 views

Spring validator: having both annotation and validator implementation

Is it possible to have both a validator for a form and annotation constraints? For example to have in a form object this field: @NotEmpty private String date; but then validate the date's pattern ...
3
votes
1answer
571 views

Internationalization in Hibernate validators

Does Hibernate validators supports internationalization. I saw the jar and I could see the various ValidationMessages.properties file. Can we create our own custom error messages which will be ...
3
votes
4answers
2k views

hibernate unique key validation

i have a field say 'user_name' in table that should be unique. what is the best way for validation using spring - hibernate validation? Thanks in advance. Regards, Nidhin
3
votes
1answer
713 views

JSR-303: Yet Another Cross-field Validation Problem

I have a @Money constraint that indicates the annotated Double property is, well, money. I wrote a ConstraintValidator that checks if a @Money property has a valid value, which depends on a Currency ...
3
votes
1answer
6k views

javax.validation.ValidationException: Unable to find default provider

I am currently working on Spring MVC web app and trying to hook up validation using the @Valid annotation. When I fire up the application I'm getting the following exception: ...
3
votes
1answer
2k views

How do I import javax.validation into my Java SE project?

I'm trying to add constraints checking, as described here http://stackoverflow.com/questions/2705759/how-to-specify-the-cardinality-of-a-onetomany-in-eclipselink-jpa
3
votes
2answers
115 views

How to check for a length of 5 or 9 with hibernate validator?

I can validate the length of a String with an annotation like: @Length(max = 255) But what if I want to verifiy that the length is either 5 or 9? Can this be done with an annotation?
3
votes
3answers
468 views

Java generics question - Class<T> vs. T?

I'm using Hibernate validator and trying to create a little util class: public class DataRecordValidator<T> { public void validate(Class<T> clazz, T validateMe) { ...
3
votes
4answers
1k views

Cross field validation with Hibernate Validator (3.1.0.GA)

How do we enforce cross field validation with hibernate validator 3.1.0.GA create table user (id, start_date, end_date, ...) e.g. college graduation finishing date for a student should be greater ...
3
votes
3answers
2k views

How can I change annotations/Hibernate validation rules at runtime?

If have a Java class with some fields I want to validate using Hibernate Validator. Now I want my users to be able to configure at runtime which validations take place. For example: public class ...
3
votes
1answer
566 views

Can Hibernate Validator be used as component outside Hibernate?

I am trying to add validation for message payload (which are json). I am using Jackson Json processor for data binding, which works quite well for me, using bean methods and occasional annotation or ...
2
votes
1answer
54 views

How to refer to a property form another Domain class in custom validator Grails?

I am now having a hard time in building my constraints, I have 3 domain classes namely Hospital, Doctor and Patient, where Hospital and Doctor has a 1:m relationship and Doctor and Patient also has a ...
2
votes
0answers
91 views

Merging ConstraintViolation set from validator.validate with ConstraintValidatorContext

Is there some method (other than foreach, but good foreach could be sufficient), to return messages from validator.valid from custom ConstraintValidator ? Simple example (yes, I'm trying to do ...
2
votes
2answers
398 views

Spring MVC with Hibernate Validator. How to validate property by group?

There are two problems: 1.Sping/MVC use hibernate validater, Custom validater how to show message? like: Cross field validation with Hibernate Validator (JSR 303) @FieldMatch.List({ ...
2
votes
1answer
152 views

Java JSR-303 Bean Validation - implementation comparison

I'm looking into adding JSR-303 validation to an application and I'm down to two options: Hibernate validator agimatec-validation I'm looking into something lightweight but also complete from the ...
2
votes
0answers
337 views

hibernate validator + jsf 2.0: ValidationMessages.properties in UTF-8

I have a problem with displaying custom ValidationMessages of Hibernate Validator in UTF-8. For common jsf messages I followed this advice: i18n with UTF-8 encoded properties files in JSF 2.0 ...
2
votes
1answer
504 views

JPA unique constraint validation

How to validate Multiple column unique constraint in JPA entity. Is there any Hibernate validator for this purpose. I have added @UniqueConstraint annotation. But it is not doing any validation.And I ...
2
votes
0answers
668 views

Cross Field Validation with inline messaging in JSF with JSR 303

What's the best way to invoke class level JSR-303 constraints that do cross field validation from JSF and have the resulting messages get translated to a FacesMessage and be tied to a particular JSF ...
2
votes
1answer
860 views

Hibernate Validation and localized error messages?

hi i am using spring,hibernate and i want to provide localized error messages for hibernate annotations so i created to properties files ValidatorMessages.properties, ValidatorMessages_ar.properties ...
2
votes
1answer
237 views

Difference between @Max and @DecimalMax (and @Min and @DecimalMin)

What's the difference between @Max and @DecimalMax, and @Min and @DecimalMin in Hibernate Validator? Looking at the Javadocs, they seem to be enforcing the same constraint.
2
votes
1answer
1k views

javax.validation: Receive an error 'No validator could be found for type:'

Framework: JQuery, Spring, Hibernate, Hibernate Validator(JSR-303 Bean Validation) Platform: Windows I am trying to define a custom constraint @IdMustExist using JSR 303-Bean Validation. The purpose ...
2
votes
2answers
426 views

hibernate validiate list of integer

I have a list of integer like this: private List<Integer> indexes; Is there a way to valid individual member to be in a range of 0-9? I see @Range and @Valid but can't find a way to make it ...
2
votes
1answer
319 views

Order <form:error path=“*”/> messages so their order isn't random

When I do a <form:errors path="*"/> my errors are always shown in a random order. Now I was wondering how I could display them in a set order. What I mean with random is: fields: field1, ...
2
votes
1answer
2k views

Using a custom ResourceBundle with Hibernate Validator

I'm trying to set up a custom message source for Hibernate Validator 4.1 through Spring 3.0. I've set up the necessary configuration: <!-- JSR-303 --> <bean id="validator" ...
2
votes
1answer
229 views

Stop Hibernate from creating not-null constraints

Is there a way to stop Hibernate from creating not-null constraints for properties annotated with @javax.validation.constraints.NotNull when using hbm2ddl = create?
2
votes
2answers
1k views

Autowiring a service into a validator

This example is a bit contrived; I've simplified it to remove extraneous details and to focus on the problem I am having. I have a validator that looks like this: @Component public class ...
2
votes
1answer
410 views

hibernate validator

I'd like to use hibernate (orm) together with hibernate validator. Within the documentation we can find the following: Out of the box, Hibernate Annotations (as of Hibernate 3.5.x) will ...
2
votes
1answer
758 views

Override of an hibernate validator annotation?

I would like to override a constraint in hibernate validator. Here is my base class: @Entity @Table(name = "Value") @Inheritance(strategy = InheritanceType.SINGLE_TABLE) @DiscriminatorColumn(name = ...
2
votes
3answers
696 views

Hibernate validator NotEmpty trim issue

It appears that the Hibernate NotEmpty annotation does not result in an error for strings filled with whitespace (" "). Only works for nulls or empty strings (ie: new String()). Is there a ...
2
votes
2answers
5k views

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 ...
1
vote
1answer
31 views

How would I specify a Hibernate “@Pattern” annotation using a regular expression from a .properties file or database

Situation: I would like to perform Hibernate Validation based upon user properties (to allow different validation rules for input based upon a user's account data) - I think it must be possible to use ...
1
vote
1answer
49 views

Hibernate Validator: Intercept Invalid Values

I'd like to set up my beans to use both Hibernate Validator (for validation) and Google Guice (for DI and method interception). Ideally, I'd like to have a setup where any method that "fails" ...
1
vote
1answer
76 views

Spring validation vs Hibernate validation using annotation

i am creating a demo application using spring mvc 3.0.I have to apply the validation over the screen.I searches on the net and found that there is mainly 2 types of validation are used with the ...
1
vote
3answers
109 views

Make custom hibernate validation annotation for email existence

i was wondering if it's possible to make custom hibernate validation annotation that will check in the database if the email exist or not (call dao method and return true if the email exist) so i can ...
1
vote
1answer
192 views

javax.validation.ConstraintViolationException: validation failed for classes during persist time for groups [javax.validation.groups.Default, ]

My entity has bean validation annotations @NotBlank and @Size on the name field. However, when I submit the JSF form with the name field left blank, it doesn't validate the field. Here's the field in ...
1
vote
1answer
57 views

Undeploying hibernate-validator from Tomcat 7

I have a maven project. With Spring 3 and Hibernate. I using org.codehaus.cargo to deploy/redeploy the war file in my tomcat 7. On initial start of tomcat this deploy works fine. But i can't ...
1
vote
1answer
194 views

JSR-303 inject locale into custom validator

I am using Spring 3 and I have the following configuration in my applicationContext.xml: <bean id="validationMessageSource" ...
1
vote
1answer
70 views

How to Migrate from Hibernate Validator Legacy (3.x) to Hibernate Validator 4.x

Our application was built using Hibernate Validator 3.1.0 (now called Hibernate Validator Legacy). I'd like to migrate it to use Hibernate Validator 4.x (4.2.0). I can't seem to find any ...
1
vote
0answers
41 views

Hibernate Validator: How to get the message ID's for any given error?

In some cases I get an unexpected error message (I missed a message for some condition that Hibernate Validator checks for). In trying to debug which message I need to update, how do I find the ...

1 2 3