1

我想知道是否存在某种方法可以将某个 webbean 获取的列表传递给 JSF 2.0 中的组件?webbean getList 应将客户端列表返回给组件。例如:

零件:

<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:composite="http://java.sun.com/jsf/composite">
<head>
  <title>This will not be present in rendered output</title>
</head>
<body>

<composite:interface>
  <composite:attribute name="list" required="true"/>
</composite:interface>

<composite:implementation>
  <h:dataTable id="clients" value="#{list}" var="client">
    <h:column>
      <f:facet name="header">
        <h:outputText value="Client"></h:outputText>
      </f:facet>
      <h:outputText value="#{client.username}"></h:outputText>
    </h:column>
    ....
  </h:dataTable>
</composite:implementation>
</body>
</html>

用户页面应传递返回 List 对象的 webBean 的位置。

....
<components:list-client list="webBean.getList"/>
....

你能给我一个例子吗?

此致

4

1 回答 1

2

只有两件事需要改变。

访问值应该“像往常一样”发生:

<components:list-client list="#{webBean.list}" />

实现需要通过以下方式访问属性#{cc.attrs.attributeName}

<h:dataTable id="clients" value="#{cc.attrs.list}" var="client">

有关更多使用示例,请查看标签文档

于 2011-02-04T02:18:18.693 回答