I would like to display the key and value of my Hashmap in the display column of the display table. Below is the code i have right now. Currently its throwing a JSP error saying that the property attribute of the column does not exist
<display:table name="myHashMap" id="Property">
<display:column title="Name" sortable="true" property="key"/>
<display:column title="Value" sortable="true" property="value" />
</display:table>