简体   繁体   中英

how to use a seam validator in jsf?

I have made a new Seam validator:

    package validators;

import java.io.Serializable;

import javax.faces.application.FacesMessage;
import javax.faces.component.UIComponent;
import javax.faces.component.UIInput;
import javax.faces.context.FacesContext;
import javax.faces.validator.ValidatorException;

import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.faces.Validator;
import org.jboss.seam.annotations.intercept.BypassInterceptors;
import org.jboss.seam.log.Log;
import org.jboss.seam.log.Logging;

@Name("roCountyValidator")
@Validator
@BypassInterceptors
public class RoCountyValidator implements javax.faces.validator.Validator,
        Serializable {

    /**
     * 
     */
    private static final long serialVersionUID = -3876319398131645955L;
    Log log = Logging.getLog(RoCountyValidator.class);

    public void validate(FacesContext context, UIComponent component,
            Object value) throws ValidatorException {
        log.info("validating....!");
        if (String.valueOf(value).equals("Arad"))
            ((UIInput) component).setValid(true);
        else {
            ((UIInput) component).setValid(false);
            FacesMessage message = new FacesMessage();
            message.setDetail("Invalid county");
            message.setSeverity(FacesMessage.SEVERITY_ERROR);
            throw new ValidatorException(message);
        }
    }
}

The problem is that I do not know how to use it directly from jsf...

The following does not work....

I have declared it in a special taglib file: myvalidators.taglib.xml

<facelet-taglib>
<namespace>http://example.com/jsf/my/validators</namespace>
<tag>
    <tag-name>roCountyValidator</tag-name>
    <validator>
        <validator-id>roCountyValidator</validator-id>
    </validator>
</tag>

and tried to use it like:

<h:inputText id="someField" value="#{booking.creditCardName}" 
                               required="true" label="County">
                <my:roCountyValidator/>
                <h:message for="someField"/>
            </h:inputText>

Can you tell me where I am wrong?

Thanks.

Two ways to solve this.

One, is to use as @BalusC has written. You don't need to define anything in faces-config.xml

<h:inputText id="cc" required="true" value="#{booking.creditCardName}">
                <f:validator validatorId="roCountyValidator"/>
                <f:attribute name="oldCreditCardNumber" value="#{booking.creditCardName}" />
                <s:validate />
</h:inputText>

Here you can even bind the old credit card number, if you want to check that also.

Then in your validate method:

public void validate(FacesContext context, UIComponent component,
        Object value) throws ValidatorException {
    log.info("validating....!");

    String oldCreditcard = String.valueOf(component.getAttributes().get("oldCreditCardNumber"));
    String newCreditCard = (String) value;
    if(SomeClass.isCorrectCreditcard(newCreditCard)) {
        //You don't need to setValid(false), this is done automatically
        Map<String, String> messages = Messages.instance();
            throw new ValidatorException(new FacesMessage(FacesMessage.SEVERITY_ERROR, messages.get("wrongCreditCardNumber"), messages
                    .get("wrongCreditCardNumber")));

    }
}



The other way, is to use the validator tag in <h:inputText>

You don't even need to create a @Validator class, as long as it's a seam component and if you use the same method signature.

I use a validator component for all my general validators

@Name("validator")
@Scope(ScopeType.EVENT)
@BypassInterceptors
public class Validator {

public void positiveInteger(FacesContext context, UIComponent toValidate, Object value) {
        String val = (String) value;

        try {
            int v = Integer.parseInt(val);
            if (v < 0)
                throw new NumberFormatException();
        } catch (NumberFormatException e) {
            ((UIInput) toValidate).setValid(false);
            FacesMessages.instance().addToControlFromResourceBundle(toValidate.getId(), "invalid.integer");
        }
    }
}

Now you can add the validator:

<h:inputText value="#{foo.bar}" required="true" validator="#{validator.positiveInteger}">
  <s:validate/>
<h:inputText>

I have no idea about the Seam part, it might have different approaches for this, but in standard JSF, you normally define it as <validator> in faces-config.xml .

<validator>
    <validator-id>roCountyValidator</validator-id>
    <validator-class>validators.RoCountyValidator</validator-class>
</validator>

and use it as follows:

<h:inputText>
    <f:validator validatorId="roCountyValidator" />
</h:inputText>

Solution found:).

Forget about taglibs and stuff!

Use it like:

<h:inputText id="someField" value="#{booking.creditCardName}" 
                               required="true" label="County" validator="roCountyValidator">
                <h:message for="someField"/>
            </h:inputText>

Please remark that

validator="roCountyValidator"

it shouldn't be used like EL expression !!! (my first wrong decision)

So the advantage of using Seam + @Validator: Seam will transform that component in the background to a jsf validator so you do no longer need jsf validator tags or any other configuration in faces-config.xml.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM