Simply use JSTL
<c:forEach items="${map}" var="entry">
<li>Key: ${entry.key}, value: ${entry.value}</li>
</c:forEach>
Or if you want to go for <h:dataTable> any how then
Map<String,String> myMap;
public List<String> getKeyAsList(){
return new ArrayList<String>(map.keySet());
}
and
<h:dataTable rows="2" value="#{YourBean.keyAsList}" rendered="true" var="someKey" id="producten">
<h:column>
<h:outputText value="#{someKey}"/>
</h:column>
<h:column>
<h:outputText value="#{YourBean.map[someKey]}"/>
</h:column>
</h:dataTable>