为什么没有输出?

Why there is no output?

如果我删除 <c:if> 标签,它将显示 findByClass 中的所有项目。 如何使用 <c:if> 或者是否有其他方式显示 eventId

   <ui:repeat value="#{eventsController.findByClass}" var="item">
                            <c:if test="${item.eventId==10}">
                                <h:outputText value="${item.eventName}"></h:outputText>
                                <p></p>
                        </c:if>
                        </ui:repeat>

试试这个

<ui:repeat value="#{eventsController.findByClass}" var="item">
    <h:outputText value="#{item.eventName}" rendered="#{item.eventId==10}"/>
</ui:repeat>

Facelets (ui:repeat) 和 JSTL (c:if) 在不同的阶段进行评估,这导致 c:if 中的条件始终 return false。