我有地图,其中列表作为值,整数作为键。如果键是 0,1,我想显示列表的值。如何在 jsp 中使用 Struts2?
Map<Integer, List<String>> parameter_map = new LinkedHashMap<Integer, List<String>>();
<s:iterator value="parameter_map">
<h3><s:property value="key" /></h3>
<table>
<s:iterator value="value">
<tr><td><s:property /></td></tr>
</s:iterator>
</table>
</s:iterator>
这是我试图在jsp中显示的内容。但是没有显示任何内容。