我在我的 facelet 中使用 ui:repeat 来迭代一个集合,如下所示:
<ui:repeat var="name" value="#{loginBean.names}">
<h:outputLabel value="#{name}" />
</ui:repeat>
但它给出了以下例外:
SEVERE: Servlet.service() for servlet [Faces Servlet] in context with path [/eSchool] threw exception [com/sun/faces/facelets/tag/jstl/core/IterationStatus] with root cause
java.lang.NoClassDefFoundError: com/sun/faces/facelets/tag/jstl/core/IterationStatus
提前感谢您的帮助。