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;
|
Is it possible to validate each element of a collection, based one or more delegate validation rules? For example:
| |||
|
feedback
|
|
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
class MyIntegerWrapper:
Here you find some documentation for | |||
|
feedback
|