如何使用<f:valdator>在JSF中使用组件ID验证辅助bean中多个<h:inputtext>字段的值

时间:2017-09-27 18:18:59

标签: jsf jsf-2

我有一个包含许多h:inputText字段的jsf页面。在使用h:commandButton提交表单之前,我想在支持bean中使用f:validator检查输入字段中的数据是否相同。我如何获得支持bean中两个inputText字段的值??

1 个答案:

答案 0 :(得分:1)

JSF中的验证机制旨在验证单个组件。 但是,实际上,在将值传播到模型之前,通常需要确保相关组件具有合理的值。 例如,要求用户在单个文本字段中输入日期不是一个好主意。 相反,您将使用三个不同的文本字段,分别为日,月和年。

如果用户输入了非法日期,例如2月30日,您希望显示验证错误并防止非法数据进入模型。

诀窍是将验证器附加到最后一个组件。在调用其验证器时,前面的组件通过验证并设置了其本地值。最后一个组件已通过转换,转换后的值将作为验证方法的Object参数传递。

当然,您需要访问其他组件。您可以使用包含当前表单的所有组件的辅助bean轻松实现该访问。只需将验证方法附加到辅助bean:

public class BackingBean {

    private int day;
    private int month;
    private int year;

    private UIInput dayInput;
    private UIInput monthInput;
    private UIInput yearInput;

    // PROPERTY: day
    public int getDay() { return day; }
    public void setDay(int newValue) { day = newValue; }

    // PROPERTY: month
    public int getMonth() { return month; }
    public void setMonth(int newValue) { month = newValue; }

    // PROPERTY: year
    public int getYear() { return year; }
    public void setYear(int newValue) { year = newValue; }

    // PROPERTY: dayInput
    public UIInput getDayInput() { return dayInput; }
    public void setDayInput(UIInput newValue) { dayInput = newValue; }

    // PROPERTY: monthInput
    public UIInput getMonthInput() { return monthInput; }
    public void setMonthInput(UIInput newValue) { monthInput = newValue; }

    // PROPERTY: yearInput
    public UIInput getYearInput() { return yearInput; }
    public void setYearInput(UIInput newValue) { yearInput = newValue; }

    public void validateDate(FacesContext context, UIComponent component, Object value) {

       int d = ((Integer) dayInput.getLocalValue()).intValue();
       int m = ((Integer) monthInput.getLocalValue()).intValue();
       int y = ((Integer) value).intValue();

       if (!isValidDate(d, m, y)) {
          throw new ValidatorException(new FacesMessage("Invalid Date"));
       }

    }

    private static boolean isValidDate(int d, int m, int y) {
        //DO YOUR VALIDATION HERE
    }

 }

这是你的JSP

 <html>

   <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
   <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>

    <f:view>

       <head></head>

       <body>

          <h:form>

             <h:panelGrid columns="3">

                <h:inputText value="#{bb.day}"   binding="#{bb.dayInput}" size="2" required="true"/>

                <h:inputText value="#{bb.month}" binding="#{bb.monthInput}" size="2" required="true"/>

                <h:inputText value="#{bb.year}"  binding="#{bb.yearInput}" size="4" required="true" validator="#{bb.validateDate}"/>

                <h:message for="year" styleClass="errorMessage"/>

             </h:panelGrid>

             <h:commandButton value="Submit" action="submit"/>

          </h:form>

       </body>

    </f:view>

 </html>