以下是我前端的代码。
<f:selectItems value="#{bean.choices1.entrySet()}" var="entry"
itemValue="#{entry.key}" itemLabel="#{entry.value}" />
在我的后端,我为choice1
设置的值类似于Map的值。
Map<String, Long> choices1= new HashMap<String, Long>();
但我收到错误
Error Parsing: #{bean.Choices1.entrySet()}
我看到很多例子,但大部分都在做我正在使用的东西。如果我做错了,请纠正。
我正在使用,