@ModelAttribute(value = "tempmap")
public Map<Integer, String> getETypeMap(HttpServletRequest request)
throws EmployeeBusinessException {
Map<Integer, String> tempmap = employeeBS
.fetchEmployeementType(userDetails.getTenantId(), userDetails.getLocaleId());
return tempmap;
}
这里我有tempmap即HashMap类型的对象,问题是我想使用SpringMVC框架在我的jsp文件中使用这个oblect。
答案 0 :(得分:0)
使用JSTL forEach循环迭代地图,如下所示:
<c:forEach var="tempmap" items="${tempmap}">
Key: ${tempmap.key} - Value: ${tempmap.value}
</c:forEach>
希望它能帮助您..使用此链接获取有关jstl Enabling JavaServerPages Standard Tag Library (JSTL) in JSP
的更多详细信息