如何在jsf中显示hashmap值?
我有bean“MyBean”,它具有属性HashMap -“map”,其值类型是MyClass。我想使用 ui:repeat 在 jsf 中显示地图的一些属性。 但是这些代码:
<ui:repeat var="var" value="#{mybean.map}" >
<tr>
<td> <h:outputText value="#{var.value.property1}"></h:outputText> </td>
<td><h:outputText value="#{var.value.property2}"></h:outputText></td>
</tr>
</ui:repeat>
但是这段代码没有显示任何内容。虽然当我尝试以这种方式在 jsp 中显示 hashmap 值时,它是成功的。我哪里错了?以及如何解决这个问题?
I have bean "MyBean", which has property HashMap - "map" which values type is MyClass. I want to show some properties of map in jsf using ui:repeat.
But these code:
<ui:repeat var="var" value="#{mybean.map}" >
<tr>
<td> <h:outputText value="#{var.value.property1}"></h:outputText> </td>
<td><h:outputText value="#{var.value.property2}"></h:outputText></td>
</tr>
</ui:repeat>
But this code didn't show anything. Though when I try to show hashmap values in jsp this way, it was succesfull. Where I am wrong? And how fix that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这确实是一个主要的皮塔饼。
长期支持Map
。除了按照 McDowell 的建议提供另一个 getter 之外,您还可以通过 自定义 EL 函数。其中 EL 函数如下所示
或者,如果您已经使用 EL 2.2(由 Servlet 3.0 兼容容器提供,例如 Glassfish 3、Tomcat 7 等),则只需使用
Map#entrySet()
然后Set#toArray()
。That's indeed a major pita. The
<c:forEach>
supportedMap
for long. Apart from supplying another getter as suggested by McDowell, you could also workaround this by a custom EL function.where the EL function look like this
Or, if you're on EL 2.2 already (provided by Servlet 3.0 compatible containers such as Glassfish 3, Tomcat 7, etc), then just use
Map#entrySet()
and thenSet#toArray()
.来自文档
repeat
值属性:因此,var 被设置为您的
HashMap
,并且 EL 尝试在其上查找键"value"
。您需要将条目集公开为List
。From the documentation for the
repeat
value attribute:So, var is set as your
HashMap
and EL tries to look up the key"value"
on it. You will need to expose your entry set as aList
.