我是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中没有填充值?