如果嵌套只有一层深度,或者具有固定数量的最大深度,那么您可以像往常一样嵌套 JSF 转发器组件,<ui:repeat>
或者<h:dataTable>
以通常的方式相互嵌套。
<ul>
<ui:repeat value="#{bean.comments}" var="comment">
<li>#{comment.username} #{comment.comment}
<ul>
<ui:repeat value="#{comment.replies}" var="reply">
<li>#{reply.username} #{reply.comment}</li>
</ui:repeat>
</ul>
</li>
</ui:repeat>
</ul>
但是如果嵌套级别是“无限的”,那么您需要一个 JSF 组件来代替它来呈现树层次结构。这在标准 JSF 组件集中不可用。您需要查看PrimeFaces <p:tree>
、RichFaces <rich:tree>
或OmniFaces <o:tree>
等 3rd 方组件库。OmniFaces 允许您完全控制树标记,而对于其他人,您可能需要摆弄一些好的 CSS 以使其看起来像您想要的那样。
<o:tree value="#{bean.comments}" var="comment">
<o:treeNode>
<ul>
<o:treeNodeItem>
<li>#{comment.username} #{comment.comment}
<o:treeInsertChildren />
</li>
</o:treeNodeItem>
</ul>
</o:treeNode>
</o:tree>
为了清楚起见,我只想将String comment
属性重命名为message
orso text
。
如果您已经在使用 JSF 2.x,那么请考虑如下所示的<my:comments comment="#{bean.comments}">
复合组件。
<cc:interface componentType="commentsComposite">
<cc:attribute name="comment" type="com.example.Comment" required="true" />
</cc:interface>
<cc:implementation>
<c:if test="#{not empty cc.comment.replies}">
<ul>
<c:forEach items="#{cc.comment.replies}" var="comment" varStatus="loop">
<li>
#{comment.username} #{comment.comment}
<my:comments comment="#{cc.parent.comment.replies[loop.index]}" />
</li>
</c:forEach>
</ul>
</c:if>
</cc:implementation>
@FacesComponent("commentsComposite")
public class CommentsComposite extends UINamingContainer {
private Comment comment;
@Override
public void setValueExpression(String name, ValueExpression expression) {
if ("comment".equals(name)) {
setComment((Comment) expression.getValue(getFacesContext().getELContext()));
}
else {
super.setValueExpression(name, expression);
}
}
public Comment getComment() {
return comment;
}
public void setComment(Comment comment) {
this.comment = comment;
}
}
另请参阅有关主题的博客,复合组件的递归树。