标签:获取 model mod 处理 session 注解 nbsp 使用 ping
1、ModelAndView
实现:
@RequestMapping("/testModelAndView") public ModelAndView testModelAndView() { modelAndView.addObject("name", "hy"); return modelAndView; }
页面获取:
<% System.out.println(request.getAttribute("name")); %>
name: ${requestScope.name }
2、Map
使用map作为参数,向map中放值,参数也可以是model、modelmap
@RequestMapping("/testMap") public String testMap(Map<String,Object> map) { map.put("user", new User("ht", "123456", "ht@sina.com")); return SUCCESS; }
页面获取:
user: ${requestScope.user }
3、SessionSttributes
使用这个注解可以将值放在session域中
@SessionAttributes(names={"user"},types={User.class})
当向请求域中放user的时候也会同时向session里面放一份
页面:
session user: ${sessionScope.user }
标签:获取 model mod 处理 session 注解 nbsp 使用 ping
原文地址:http://www.cnblogs.com/hy87/p/6195632.html