以下のコードを実行すると、Apache Tomcat ログに次のように表示されます。
Property 'recuClientes' not found in type com.swc.rc.recu.UtilsRecu
webPage が返されますNo records found.
なにか提案を?
これがコールです
<p:outputPanel>
    <h:form>  
        <p:dataTable var="rec" value="#{rc.recu}">  
            <p:column headerText="recu">  
                <h:outputText value="#{rec.deudor}" />  
            </p:column>  
        </p:dataTable>  
    </h:form>
</p:outputPanel>
これがソースです、使えますよね?
@XmlTransient
public Collection<Procs> getProcsCollection() {
    return procsCollection;
}
public void setProcsCollection(Collection<Procs> procsCollection) {
    this.procsCollection = procsCollection;
}
そして、これがマネージドBeanです..
@ManagedBean(name = "rc")
@SessionScoped
public class UtilsRecu {
    private Clientes cliente=new Clientes();
    private List <Procs> recu=new LinkedList<Procs>(); 
    public void recuClientes(){
        recu=(List<Procs>) cliente.getProcsCollection();
    }        
    public void setRecu(List<Procs> recu) {
        this.recu= recu;
    }
    public List<Procs> getRecu() {
        recuClientes();
        return recu;
    }
}
ありがとうございました..