Is it possible to validate a collection of objects in JSR 303 - Jave Bean Validation where the collection itself does not have any annotations but the elements contained within do?

For example, is it possible for this to result in a constraint violation due to a null name on the second person:

List<Person> people = new ArrayList<Person>();
people.add(new Person("dave"));
people.add(new Person(null));

Validator validator = Validation.buildDefaultValidatorFactory().getValidator();
Set<ConstraintViolation<List<Person>>> validation = validator.validate(people);
link|improve this question
feedback

4 Answers

up vote 1 down vote accepted

I doubt it, because that would imply validating the ArrayList, not the individual beans, and ArrayList has no validator annotations.

One ugly hack that I can think of:

Create a custom class that extends ArrayList and has a custom validator annotation named @ValidateElements, for which you need to implement the validation logic so that it delegates the validation to individual validators for each child element.

Update: this answer does not seem correct after all, please see the new answer by ericacm. I would delete this, but it's not possible to delete an accepted answer.

link|improve this answer
This doesn't seem like such a bad option, if the list is going to be used for validation and it can be done through a generic class there seems to be no reason why not. – cam Nov 5 '10 at 15:20
feedback

Yes, just add @Valid to the collection.

Here is an example from the Hibernate Validator Reference.

public class Car {
  @NotNull
  @Valid
  private List<Person> passengers = new ArrayList<Person>();
}

This is standard JSR-303 behavior. See Section 3.1.3 of the spec.

link|improve this answer
feedback

You can of course also just iterate over the list and call Validator.validate on each element. Or put the List into some wrapper bean and annotate it with @Valid. Extending ArrayList for validation seems wrong to me. Do you have a particular use case you want to solve with this? If so maybe you can explain it a little more. To answer your initial question:

Is it possible to validate a collection of objects in JSR 303 - Jave Bean Validation where the collection itself does not have any annotations but the elements contained within do?

No

link|improve this answer
I'm using JAX-RS and have a json list of objects which i parse into a list of java beans. I don't have a wrapper object for the list, so no property to annotate... i thought that if this was going to be a general problem in not having a wrapping bean, instead of creating a new wrapper for each type of list it might be easier just to annotate a generic list subclass. I think this would also be achievable though with a generic wrapping bean as you suggest, eg: public class ValidatableListBean<T extends List<?>> { @Valid private T list; } – cam Nov 9 '10 at 10:23
Actually, maybe that class would look more like this: public class ValidatableBeanList<T> { @Valid private List<T> list; } – cam Nov 9 '10 at 10:29
ValidatableBeanList<T> seems reasonable for your usecase. – Hardy Nov 10 '10 at 9:04
feedback

You, can also add @NotEmpty to the collection.

public class Car {
  @NotEmpty(message="At least one passenger is required")
  @Valid
  private List<Person> passengers = new ArrayList<Person>();
}

this will ensure at least one passenger is present, and the @Valid annotation ensures that each Person object is validated

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.