Fixed
Details
Assignee
Hardy FerentschikHardy FerentschikReporter
Emerson FarrugiaEmerson FarrugiaBug 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
Emerson FarrugiaGunnar MorlingHardy FerentschikComponents
Fix versions
Affects versions
Priority
Major
Details
Details
Assignee
Hardy Ferentschik
Hardy FerentschikReporter
Emerson Farrugia
Emerson FarrugiaBug 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
Emerson Farrugia
Gunnar Morling
Hardy Ferentschik
Components
Fix versions
Affects versions
Priority
Created January 5, 2012 at 4:50 AM
Updated November 12, 2012 at 6:38 PM
Resolved March 1, 2012 at 1:46 AM
I have a composite constraint @Foo that's validated by FooValidator. @Foo's marked with @Bar, which is validated by BarValidator.
When I validate a bean whose property is marked as @Foo, and BarValidator fails, FooValidator is still being run. This prevents me from assuming that BarValidator has passed, which defeats the purpose of marking @Foo with @Bar because FooValidator now has to repeat the work of BarValidator.
The culprit as best I can tell is line 133 of ConstraintTree, which doesn't check the fail-fast property before running the validator of the constraint itself.