How to display hashmap in JSF using selectonemenu?

ぐ巨炮叔叔 提交于 2019-11-30 07:31:59

问题


I have a Java hashmap with a a list of a groups:

private HashMap<String, String> listGroups = new HashMap<>();

The question is how I can display the values from the hashmap into the selectonemenu?


回答1:


The <f:selectItems> already supports maps.

<f:selectItems value="#{bean.listGroups}" />

The map key becomes the option label and the map value becomes the option value.

That said, you probably want to use LinkedHashMap instead of HashMap if displaying the map entries in insertion order is important, or TreeMap if you want to automatically sort them by map key.

See also

  • Our h:selectOneMenu wiki page


来源:https://stackoverflow.com/questions/11484126/how-to-display-hashmap-in-jsf-using-selectonemenu

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!