0

0 与 eclipse 和 glassfish,事实上我已经添加了一个自定义验证器来验证 emai 地址,并且我得到了 class not found 异常。虽然我也已经在 faces.config 中注册了。

这是我的验证器代码

public static final String EmailPattern= "^[_A-Za-z0-9-]+(\\." +
            "[_A-Za-z0-9-]+)*@[A-Za-z0-9]+(\\.[A-Za-z0-9]+)*" +
            "(\\.[A-Za-z]{2,})$";
   public void validate(FacesContext context, UIComponent component,
            Object value) throws ValidatorException {

        matcher = pattern.matcher(value.toString());
        if(!matcher.matches())
        {
            FacesMessage message = new FacesMessage("Please enter a valid email address");
            message.setSeverity(FacesMessage.SEVERITY_ERROR);
            throw new ValidatorException(message);
        }
    }

我在 faces.config 中注册

<validator>

<validator-id>emailvalidator</validator-id>
<validator-class>com.jsf.validators.EmailValidator</validator-class>
</validator>

有人知道其中有什么问题吗?

4

0 回答 0