Is it possible to validate each element of a collection, based one or more delegate validation rules? For example:

@EachElement({@Min(1), @Max(12)})
private Set<Integer> monthNumbers;
link|improve this question

33% accept rate
feedback

1 Answer

Have a look at this answer: Hibernate Validation of Collections of Primitives. That describes a solution which work for you but it is pretty complex. A simpler solution might be to implement a wrapper class for your Integer and declare @Min and @Max in that class. Than you can use

@Valid
private Set<MyIntegerWrapper> monthNumbers;

class MyIntegerWrapper:

class MyIntegerWrapper
{
   @Min(1)
   @Max(12)
   Integer myInteger;
}

Here you find some documentation for @Valid: Object graphs

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.