1

我有一个复合组件(实际上是一个验证码),我在 ah:form 中使用它。
当我单击 h:form 的提交按钮时出现以下错误。

1 月 16 日。2013 10:02:06 javax.faces.validator.BeanValidator 验证
注意:无法验证具有空值的组件:验证码:验证码文本

这是验证码的复合组件的xhtml代码

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
  xmlns:composite="http://java.sun.com/jsf/composite" xmlns:xcc="http://java.sun.com/jsf/composite/components">
<h:body>

  <composite:interface>
    <composite:attribute name="id" type="java.lang.String" />
    <composite:attribute name="imageWidth" type="java.lang.Integer" />
    <composite:attribute name="imageHeight" type="java.lang.Integer" />
    <composite:attribute name="imageClass" type="java.lang.String" />
    <composite:attribute name="inputClass" type="java.lang.String" default="" />
    <composite:attribute name="placeholder" type="java.lang.String" default="" />
    <composite:attribute name="failureMessage" type="java.lang.String" default="Captcha validation failed" />

    <composite:editableValueHolder name="captchaText" />
  </composite:interface>

  <composite:implementation>
    <h:inputText id="captchaText" required="true" styleClass="#{cc.attrs.inputClass}" placeholder="#{cc.attrs.placeholder}"
      autocomplete="off" maxlength="10">
      <f:param name="failureMessage" value="#{cc.attrs.failureMessage}" />
      <f:validateLength minimum="6" />
      <f:validator validatorId="captchaValidator" />
    </h:inputText>
    <h:graphicImage id="captchaImage" alt="" style="margin-left:3px;" styleClass="#{cc.attrs.imageClass}" width="#{cc.attrs.imageWidth}"
      height="#{cc.attrs.imageHeight}" value="__captcha.jpg" />
  </composite:implementation>

</h:body>
</html>

这是 Captcha 的 JSF Validator 代码。

import javax.faces.application.FacesMessage;


import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
import javax.faces.validator.FacesValidator;
import javax.faces.validator.Validator;
import javax.faces.validator.ValidatorException;

import net.paissad.waqtsalat.servlet.CaptchaServlet;

    @FacesValidator(CaptchaValidator.VALIDATOR_ID)
    public class CaptchaValidator implements Validator {

    public static final String VALIDATOR_ID = "captchaValidator";

    @Override
    public void validate(final FacesContext context, final UIComponent component, final Object value) throws ValidatorException {

        final String enteredValue = (String) value;
        final String expectedValue = (String) context.getExternalContext().getSessionMap()
            .get(CaptchaServlet.CAPTCHA_KEY);

        final boolean ok = (enteredValue != null) && (enteredValue.equals(expectedValue));
        if (!ok) {
            String summary = (String) component.getAttributes().get("failureMessage");
             if (summary == null) summary = "";
            throw new ValidatorException(new FacesMessage(FacesMessage.SEVERITY_ERROR, summary, summary));
        }
    }

}

我真的没有必要展示构建真正的验证码图像的 CaptchaServlet 的代码。我只能说它确实很好用。我从这里的代码中得到启发。

这基本上是我在表单中使用复合组件的方式。(这不是我真正的用例顺便说一句)

<h:form>
    <xcc:captcha id="captcha" imageClass="img-rounded" placeholder="#{i18n.Captcha_enter_code_here}" failureMessage="Captcha validation failed" />
    <h:commandButton styleClass="btn btn-success" type="submit" value="#{i18n.Submit}"
            actionListener="#{accountRegistrationController.register}" action="success" />
</h:form>

表单呈现如下(法语本地化):

在此处输入图像描述

我更喜欢使用复合组件 + 验证器 + servlet
我更喜欢避免使用控制器 bean (@Named / @RequestScoped) 和验证 Captcha 输入值的方法。

当我在 Eclipse 中调试验证器代码时,代码行为正确。唯一的错误是以下部分代码永远不会从 Captcha 的组件中检索“failureMessage”属性,我该如何解决这个问题?它始终为空。

String summary = (String) component.getAttributes().get("failureMessage");

那么,我该如何解决 Bean 验证问题呢?
以及如何在我的 Validator 中正确检索属性“failureMessage”?

我已经尝试了很多东西,现在我依靠你。
提前感谢您的帮助。

PS:我目前正在使用 TomEE 1.5+,Java6。

4

1 回答 1

1

看起来您的 inputText 标记缺少 value 属性。value 属性在输入和 bean 之间进行绑定。

<h:inputText value="#{yourBean.yourValue" ...
于 2013-01-16T11:24:33.463 回答