在JSF中对托管bean的值

时间:2013-11-13 06:36:03

标签: jsf

我是JSF的新手。尝试通过java设置outputtext。

    Name
    <h:inputText value="#{customerBean.name}" >         
    </h:inputText>

    JoiningDate
    <h:outputText value="#{customerBean.dateOfBirth}" >
      <f:convertDateTime pattern="d-M-yyyy" />
    </h:outputText>

    <h:commandButton value="View" action="#{customerBean.view}" />

在我的客户bean iam设置值

public void view(){ 
  CustomerDTO dto = new CustomerDTO();
  dto.setName(name);
  dto = dao.view(dto);
  dto.setDateOfBirth(dto.getDateOfBirth()); 
}

当我打印dataOf Birth的值时,它在视图中打印但是在UI中没有填充值?

0 个答案:

没有答案