i have map of key/values, which i initialize in @PostConstruct as follows:
Map<String, String> myMap;
@PostConstruct
public void init() {
myMap=new LinkedHashMap<String, String>();
myMap.put("myKey","myValue");
}
public Map<String, String> getMyMap() {
return myMap;
}
public void setMyMap(Map<String, String> myMap) {
this.myMap = myMap;
}
when i try to make for loop on this map with ui:repeat as follows, and i set break point on the getter of the map, i notice that it's not getting called, and so nothing is printed:
<ice:panelGroup>
<ui:repeat items="#{myBean.myMap}" var="entry" varStatus="loop">
<input type="checkbox" name="myCheckBoxes" value="#{entry.value}" />
<span class="#{fn:contains(entry.value,'g') ? 'bold-style' : ''}">#{entry.key}</span>
</ui:repeat>
</ice:panelGroup>
but when replacing above code with c:foreach, everything works fine, and list is printed as expected, any ideas why i am getting such behavior ?