JSF带有后台Bean的组合组件

7
我正在尝试使用Core JSF 3书中第375页的示例,使用自己的后端组件来使复合组件正常工作,但是我只得到了一个NPE。问题似乎出现在encodeBegin()的开头,Date date = (Date) getValue()返回null。如果说实话,我不太明白组件的值应该存储在哪里,我使用cc:attribute type=指定它为java.util.Date,但我真的不明白这个:public Object getSubmittedValue() { return this; } - 它将返回InputDateBean类的实例 - 如何生成日期。总的来说,我对这个工作原理感到非常困惑。

与书本示例不同,我尝试使用后端组件进行临时存储,因此当输入日期时,我尝试将其存储在#{cc.day}中,在书中,他们出于某种原因使用应用程序范围的bean。

感谢任何帮助。我正在使用Mojarra 2.1。

inputDate.xhtml

<cc:interface componentType="uk.co.myco.jsfbeans.sqcc.InputDateBean">
    <cc:attribute name="value" type="java.util.Date"/>
</cc:interface>

<cc:implementation>
    <h:panelGrid columns="3">
        <h:inputText id="day" value="#{cc.day}"
                     converter="javax.faces.Integer"/>
        <h:inputText id="month" value="#{cc.month}"
                     converter="javax.faces.Integer"/>
        <h:inputText id="year" value="#{cc.year}"
                     converter="javax.faces.Integer"/>
    </h:panelGrid>
</cc:implementation>

InputDateBean.java

package uk.co.myco.jsfbeans.sqcc;


import java.io.IOException;
import java.util.Calendar;
import java.util.Date;
import javax.faces.component.FacesComponent;
import java.util.GregorianCalendar;
import javax.faces.application.FacesMessage;
import javax.faces.component.NamingContainer;
import javax.faces.component.UIInput;
import javax.faces.context.FacesContext;
import javax.faces.convert.ConverterException;
import uk.co.myco.general.SQLog;
import uk.co.myco.jsfbeans.helper.Messages;

@FacesComponent(value = "uk.co.myco.jsfbeans.sqcc.InputDateBean")
public class InputDateBean extends UIInput implements NamingContainer {

    private int day = 0, month  = 0, year = 0;

    public InputDateBean() {
    }

    @Override
    public String getFamily() {
        return "javax.faces.NamingContainer";
    }

    @Override
    public void encodeBegin(FacesContext context) throws IOException {
        Date date = (Date) getValue();
        Calendar cal = new GregorianCalendar();
        cal.setTime(date);
        UIInput dayComponent = (UIInput) findComponent("day");
        UIInput monthComponent = (UIInput) findComponent("month");
        UIInput yearComponent = (UIInput) findComponent("year");
        dayComponent.setValue(cal.get(Calendar.DATE));
        monthComponent.setValue(cal.get(Calendar.MONTH) + 1);
        yearComponent.setValue(cal.get(Calendar.YEAR));
        super.encodeBegin(context);
    }

    @Override
    public Object getSubmittedValue() {
        return this;
    }

    @Override
    protected Object getConvertedValue(FacesContext context, Object newSubmittedValue)
            throws ConverterException {
        UIInput dayComponent = (UIInput) findComponent("day");
        UIInput monthComponent = (UIInput) findComponent("month");
        UIInput yearComponent = (UIInput) findComponent("year");
        int lday = (Integer) dayComponent.getValue();
        int lmonth = (Integer) monthComponent.getValue();
        int lyear = (Integer) yearComponent.getValue();
        if (isValidDate(lday, lmonth, lyear)) {
            return new GregorianCalendar(lyear, lmonth - 1, lday).getTime();
        } else {
            FacesMessage message = Messages.getMessage("util.messages", "invalidDate", null);
            message.setSeverity(FacesMessage.SEVERITY_ERROR);
            throw new ConverterException(message);
        }
    }
    // getters & setters & isValidDate() removed
}
1个回答

4
我现在明白了我的错误所在。问题在于组合组件必须使用日期对象进行调用,即<cclib:inputDate value="#{bean.date}"/>。按照代码的方式,需要实例化日期,但是没有这样做。更加健壮的方法是在encodeBegin()中执行new Date(),以防getValue()为null。这与h:inputText/f:convertDateTime的操作方式相同,不需要实例化值。

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接