@ModelAttribute(value = "tempmap")
public Map<Integer, String> getETypeMap(HttpServletRequest request)
throws EmployeeBusinessException {
Map<Integer, String> tempmap = employeeBS
.fetchEmployeementType(userDetails.getTenantId(), userDetails.getLocaleId());
return tempmap;
}
here i have tempmap ie HashMap type of object, the problem is i want to use this oblect in my jsp file using SpringMVC framework.