Iterate through Map keys using JSF?
I have a POJO with a property of type Map. Is there a way to iterate through the map entries and display them using JSF? E.g.
key1 = value1
key2 = value2
...
The docs indicate that h:dataTable can't iterate over Maps, and I can't figure anyway to get it to iterate over map.keySet(), since it's not called "getKeySet()".
I can do this using JSTL and c:forEach, but I've heard that can cause other problems with postback.
Any ideas?