如何在jsf中显示hashmap值?

发布于 2024-11-07 01:40:56 字数 486 浏览 5 评论 0原文

我有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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

若无相欠,怎会相见 2024-11-14 01:40:56

这确实是一个主要的皮塔饼。 长期支持 Map。除了按照 McDowell 的建议提供另一个 getter 之外,您还可以通过 自定义 EL 函数

<ui:repeat value="#{util:toList(bean.map)}" var="entry">
    #{entry.key} = #{entry.value} <br/>
</ui:repeat>

其中 EL 函数如下所示

public static List<Map.Entry<?, ?>> toList(Map<?, ?> map) {
    return = map != null ? new ArrayList<Map.Entry<?,?>>(map.entrySet()) : null;
}

或者,如果您已经使用 EL 2.2(由 Servlet 3.0 兼容容器提供,例如 Glassfish 3、Tomcat 7 等),则只需使用 Map#entrySet()然后Set#toArray()

<ui:repeat value="#{bean.map.entrySet().toArray()}" var="entry">
    #{entry.key} = #{entry.value} <br/>
</ui:repeat>

That's indeed a major pita. The <c:forEach> supported Map for long. Apart from supplying another getter as suggested by McDowell, you could also workaround this by a custom EL function.

<ui:repeat value="#{util:toList(bean.map)}" var="entry">
    #{entry.key} = #{entry.value} <br/>
</ui:repeat>

where the EL function look like this

public static List<Map.Entry<?, ?>> toList(Map<?, ?> map) {
    return = map != null ? new ArrayList<Map.Entry<?,?>>(map.entrySet()) : null;
}

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 then Set#toArray().

<ui:repeat value="#{bean.map.entrySet().toArray()}" var="entry">
    #{entry.key} = #{entry.value} <br/>
</ui:repeat>
苍白女子 2024-11-14 01:40:56

来自文档 repeat 值属性:

此标记迭代的项目集合的名称。该集合可以是 List、数组、java.sql.ResultSet 或单个 java Object。如果集合为 null,则此标记不执行任何操作。

因此,var 被设置为您的 HashMap,并且 EL 尝试在其上查找键 "value"。您需要将条目集公开为List

From the documentation for the repeat value attribute:

The name of a collection of items that this tag iterates over. The collection may be a List, array, java.sql.ResultSet, or an individual java Object. If the collection is null, this tag does nothing.

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 a List.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文