Fixed
Details
Assignee
UnassignedUnassignedReporter
William KemperWilliam KemperBug Testcase Reminder (view)
Bug reports should generally be accompanied by a test case!
Bug Testcase Reminder (edit)
Bug reports should generally be accompanied by a test case!
Participants
Hardy FerentschikWilliam KemperComponents
Fix versions
Affects versions
Priority
Major
Details
Details
Assignee
Unassigned
UnassignedReporter
William Kemper
William KemperBug Testcase Reminder (view)
Bug reports should generally be accompanied by a test case!
Bug Testcase Reminder (edit)
Bug reports should generally be accompanied by a test case!
Participants
Hardy Ferentschik
William Kemper
Components
Fix versions
Affects versions
Priority
Created June 24, 2014 at 10:28 PM
Updated October 22, 2014 at 2:50 PM
Resolved July 13, 2014 at 9:11 AM
I had a class which implemented
Iterable
, but also had constraints I expected to be validated. Everything worked as expected when validating this class directly, but when this class was part of a cascading validation, it's annotated fields were never validated. I found the code inorg.hibernate.validator.internal.engine.ValidatorImpl#createIteratorForCascadedValue
which looks culpable. If the given type isIterable
, only the elements in the result of invokingiterator()
will be validated. I think it should also validate any annotated members of the type itself. In other words, I don't think being iterable should preclude having constraints validated. I've attached a simple test case illustrating the problem. Thank you.