我想在显示表的显示列中显示我的Hashmap的键和值。以下是我现在的代码。目前它抛出一个JSP错误,说明该列的属性属性不存在
<display:table name="myHashMap" id="Property">
<display:column title="Name" sortable="true" property="key"/>
<display:column title="Value" sortable="true" property="value" />
</display:table>
答案 0 :(得分:1)
尝试使用此代码:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<c:forEach items="${map}" var="entry">
Key = ${entry.key}, value = ${entry.value}<br>
</c:forEach>