How to specify a validator for an input component inside a composite component?

后端 未结 3 1192
天命终不由人
天命终不由人 2020-12-06 07:44

Should I register a custom validator in faces-config.xml if I\'m using JSF 2.0.4? My custom validator uses Validator interface which is javax.faces.valida

相关标签:
3条回答
  • 2020-12-06 08:29

    No. That is not necessary with Jsf 2.0. Just annotate your validator with @FacesValidator. The annotation registers your validator automatically. No xml needed.

    0 讨论(0)
  • 2020-12-06 08:37

    As per the code example in your updated question, you seem to not be delegating the validator to the right input at all, so the validator is simply ignored altogether.

    You need to define the desired input (for which you'd like to attach a validator) as a <composite:editableValueHolder> in the <composite:interface>.

    <cc:interface>
        <cc:editableValueHolder name="forName" targets="inputId" />
        ...
    </cc:interface>
    <cc:implementation>
        ...
        <h:inputText id="inputId" ... />
        ...
    </cc:implementation>
    

    The above <composite:editableValueHolder> basically tells that any <f:validator for="forName"> must be applied on the <h:inputText id="inputId">. So, the following should then do it:

    <cc:myComp>
        <f:validator id="myValidator" for="forName" />
    </cc:myComp>
    

    You can even use the same value in name and targets, but the key point is that there must be a <composite:editableValueHolder> present so that JSF knows on what input component exactly the validator should be targeted, there can namely be more than one input component in the composite, you see.

    0 讨论(0)
  • 2020-12-06 08:38

    If you are working with JSF 2, I don't think you need to touch the faces-config.xml file to create a customer Validator. You can simply use the annotation @FacesValidator to declare a Validator. It should be something like this:

    @FacesValidator("myValidator")
    public class MyValidator implements Validator {
    
        @Override
        public void validate(FacesContext context, UIComponent component, Object value) throws ValidatorException {
            // Your logic
        }
    
    }
    

    Then you can start using it in your .xhtml page with, for instance, <f:validator> tag:

    <f:validator validatorId="myValidator" />
    
    0 讨论(0)
提交回复
热议问题