0

我是 JSF 的新手。尝试通过 java 设置输出文本。

    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 中?

4

0 回答 0