标签:
转自:http://blog.csdn.net/z69183787/article/details/41653875
1、接收请求请求
(1)使用HttpServletRequest获取,如request.getParameter("name")
(2)@RequestParam("pass")String password,或@Param("pass")String password。表单参数也可以用这种方式获取,Spring会自动将表单参数注入到方法参数,和表单的name属性保持一致。
(3)自动注入Bean属性
2、向页面传参
(1)使用HttpServletRequest 和 Session 然后setAttribute(),就和Servlet中一样
(2)使用ModelAndView对象
(3)使用ModelMap对象
(4)使用@ModelAttribute注解
标签:
原文地址:http://www.cnblogs.com/z-sm/p/4621261.html