我已经将数据放入 HashMap 类型,现在我想将地图对象传递到JSP页面以显示地图对象值。
public String loginData(@ModelAttribute("loginBean")LoginBean
loginBean,ModelMap model) throws IOException{
HashMap<String, String> map=new HashMap<String, String>();
map.put("fname","fname");
map.put("lname","lname");
map.put("mobile","mobile");
map.put("gender","gender");
ModelAndView mav = new ModelAndView("result");
mav.addObject("map", map);
return "result";
}
then i am getting map values in Jsp like bellow
<c:out value="${map.get('mobile')}"/>
the above expression not giving any values
请提出任何想法。