ui:在jsf中重复2.2正在工作但渲染

时间:2013-06-28 09:30:03

标签: repeat jsf-2.2

我有jsf 2.2应用程序

我会像这样呈现一个列表

<ui:repeat var="item" value="#{handler.list}">
    <li><h:outputLink value="#{urlHandler.getUrl(item)}">#{item.title}</h:outputLink></li>
</ui:repeat>

但不知何故,它呈现给

<ul class="breadcrumbs">
    <ui:repeat><li><a href="xxx">l1</a></li></ui:repeat>
    <ui:repeat><li><a href="xxx">123</a></li></ui:repeat>
</ul>

我正在使用

    <dependency>
        <groupId>com.sun.faces</groupId>
        <artifactId>jsf-api</artifactId>
        <version>2.2.0</version>
    </dependency>
    <dependency>
        <groupId>com.sun.faces</groupId>
        <artifactId>jsf-impl</artifactId>
        <version>2.2.0</version>
    </dependency>

任何想法为什么?

EDIT命名空间:

<html xmlns="http://www.w3.org/1999/xhtml" 
xmlns:ui="http://xmlns.jcp.org/jsf/facelets" 
xmlns:f="http://xmlns.jcp.org/jsf/core" 
xmlns:h="http://xmlns.jcp.org/jsf/html" 
xmlns:p="http://primefaces.org/ui" 
xmlns:fn="http://xmlns.jcp.org/jsp/jstl/functions" 
xmlns:c="http://xmlns.jcp.org/jsp/jstl/core">

1 个答案:

答案 0 :(得分:2)

这是一个现在在最新的2.2.2-SNAPSHOT中修复的错误