From your code:
<c:forEach items="${myBean.myMap.keySet}" var="var">
This is not going to work. This requires a getKeySet()
method on the Map
interface, but there is none.
If your environment supports EL 2.2 (Servlet 3.0 containers like Tomcat 7, Glassfish 3, etc), then you should invoke the keySet()
method directly instead of calling it as a property:
<c:forEach items="#{myBean.myMap.keySet()}" var="key">
<h:outputText value="#{key}"/>
</c:forEach>
Or if your environment doesn't support EL 2.2 yet, then you should iterate over the map itself directly which gives a Map.Entry
instance on every iteration which in turn has a getKey()
method, so this should do as well:
<c:forEach items="#{myBean.myMap}" var="entry">
<h:outputText value="#{entry.key}"/>
</c:forEach>
None of above works with <ui:repeat>
as it doesn't support Map
nor Set
. It supports List
and array only. The difference between <c:forEach>
and <ui:repeat>
is by the way that the <c:forEach>
generates multiple JSF components during view build time and that the <ui:repeat>
creates a single JSF component which generates its HTML output multiple times during view render time.