Hello,
 
I have a map which is a variable of a jsf managed bean and I would like to diplay it in jsp. I have tried as follows:
 
[code]
<c:forEach var="item" items="#{AlbumsAction.adminAlbums}">
<h:outputText value="#{item}"/><br>
</c:forEach>
[/code]
 
This did not work. Can anyone tell me how to display a Map/HashMap in jsf??
 
Thanks in advance,
 
Julien.

Reply via email to