您好我无法访问我的xhtml页面中的值。我在我的应用程序中使用JSF作为前端。
ProductEntity.java
String name;
String cost;
String mfgDate;
// set()/get() methods
ProductBean.java
private ArrayList<ProductTO> productTO = new ArrayList<ProductTO>();
setProductTO()/getProductTO()
init(){
proList = proManager.getAllProduct(); //getting list of all products
for (ProductEntity proEntity : proList) {
ProTO proTo = new ProTO();
proto.set(proEntity);
.....
}
productTO.add(proTo);
showProduct.xhtml
<h:dataTable value="#{product.productTO}" var="pto">
<h:column>
<f:facet name="header">
<h:outputText
value="productname" />
</f:facet>
<h:outputText value="#{pto.name}"/>
</h:column>
</h:dataTable>
pto.name值未在html页面中反映出来。 proList正在填充,但是当我在html中访问它时,它没有显示值。请提出一些解决方案。谢谢!!!!
答案 0 :(得分:0)
您似乎正在尝试使用null
元素填充列表,productTo.add(proTo)
过程应位于for
指令内:
for (ProductEntity proEntity : proList) {
ProTO proTo = new ProTO();
proto.set(proEntity);
.....
productTO.add(proTo);
}