Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.3.0
-
None
-
JSF 2.2 / Wildfly 8.1
Description
InjectionAwareApplicationWrapper wraps custom validators.
In ValidatorTagHandlerDelegateImpl the check for class equality causes a unique constraint on validators, so effectively filtering all "wrapped" validators but the first:
for (Validator validator : validators) {
if (validator.getClass().equals(v.getClass()))
}
if (!found)
{ evh.addValidator(v); }