0

嗨,我无法访问我的 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);

显示产品.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 中访问它时,它没有显示值。请提出一些解决方案。谢谢 !!!!

4

1 回答 1

0

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

for (ProductEntity proEntity : proList) {
    ProTO proTo = new ProTO();
    proto.set(proEntity);
      .....
    productTO.add(proTo);
} 
于 2013-10-09T18:04:52.730 回答