Primefaces データテーブル コンポーネントを使用していますが、ページを読み込んでも何も表示されません。それはすべて白です。これは私のコードです:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<ui:composition xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.org/ui">
<h:form id="formUsuarios">
<p:dataTable id="dataTable" var="o" value="#{procesos.procesos}" paginator="true" rows="10"
paginatorTemplate="{CurrentPageReport} {FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {RowsPerPageDropdown}"
rowsPerPageTemplate="5,10,15">
<f:facet name="header">
Procesos
</f:facet>
<p:column sortBy="#{o.idProceso}" headerText="ID Proceso">
<h:outputText value="#{o.idProceso}" />
</p:column>
<p:column sortBy="#{o.cantidad}" headerText="Cantidad">
<h:outputText value="#{o.cantidad}" />
</p:column>
<p:column headerText="Condicion">
#{o.condicion}
</p:column>
<p:column headerText="Disposicion">
#{o.disposicion}
</p:column>
<p:column headerText="Embalaje">
#{o.embalaje}
</p:column>
<p:column headerText="Especie">
#{o.especie}
</p:column>
<p:column headerText="EtiquetaPlu">
#{o.etiquetaPlu}
</p:column>
<p:column headerText="Exportadora">
#{o.exportadora}
</p:column>
<p:column headerText="Fecha Cosecha">
#{o.fechaCosecha}
</p:column>
<p:column headerText="Fecha Embalaje">
#{o.fechaEmbalaje}
</p:column>
<p:column headerText="Fecha Inicio">
#{o.fechaInicio}
</p:column>
<p:column headerText="Fecha Termino">
#{o.fechaTermino}
</p:column>
<p:column headerText="Kilos Nominal">
#{o.kilosNominal}
</p:column>
</p:dataTable>
</h:form>
</ui:composition>
そしてビーン
@ManagedBean(name = "procesos")
@ViewScoped
public class ProcesosBean implements Serializable {
private List<VistaProcesosEntity> procesos;
@PostConstruct
public void init(){
procesos=new ArrayList<VistaProcesosEntity>();
procesos= Procesos.getALL();
}
public List<VistaProcesosEntity> getProcesos() {
return procesos;
}
public void setProcesos(List<VistaProcesosEntity> procesos) {
this.procesos = procesos;
}
}
ホワイト ページのソース コードを見ると、次のように表示されます。
<form id="formUsuarios" name="formUsuarios" method="post" action="/Frutemu/Contenido/vistaProcesos.jsf" enctype="application/x-www-form-urlencoded">
<input type="hidden" name="formUsuarios" value="formUsuarios" />
<p:dataTable id="dataTable" var="o" value="[model2.VistaProcesosEntity@584915f4, model2.VistaProcesosEntity@584915f4, model2.VistaProcesosEntity@584915f4, model2.VistaProcesosEntity@584915f4, model2.VistaProcesosEntity@1aaed586, model2.VistaProcesosEntity@bf002e88, model2.VistaProcesosEntity@bf002e88, model2.VistaProcesosEntity@bf002e88............etc
<p:column headerText="ID Proceso">
</p:column>
<p:column headerText="Cantidad">
</p:column>
<p:column headerText="Condicion">
</p:column>
<p:column headerText="Disposicion">
</p:column>... etc