JSF bean没有在xhtml页面中显示值

时间:2013-10-09 17:42:09

标签: jsf

您好我无法访问我的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中访问它时,它没有显示值。请提出一些解决方案。谢谢!!!!

1 个答案:

答案 0 :(得分:0)

您似乎正在尝试使用null元素填充列表,productTo.add(proTo)过程应位于for指令内:

for (ProductEntity proEntity : proList) {
    ProTO proTo = new ProTO();
    proto.set(proEntity);
      .....
    productTO.add(proTo);
}