6.SpringMVC_处理模型数据

Spring MVC通过以下几种途径运输出模型数据:

1.ModelAndView

2.Map及Model

3.@SessionAttributes :会把数据放入session中,该注解只能用在类上。

4.@ModelAttribute


1.ModelAndView

 处理方法viewName标识了返回目标页面,通过addObject方法添加模型数据。框架会把model中的数据放入request域对象中

@RequestMapping("/testModelAndView")
	public ModelAndView testModelAndView(){
		
		String viewName=SUCCESS;
		ModelAndView mav=new ModelAndView(viewName);
		//添加模型数据
		mav.addObject("time", new Date());
		
		return mav;
	}
在目标页面打印出模型数据

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
	<h3>Success page</h3>
	time: ${requestScope.time }
</body>
</html>


2.通过Map及Model

@RequestMapping("/testMap")
	public String testMap(Map<String,Object> map){
		map.put("names", Arrays.asList("tom","Jerry"));
		return SUCCESS;
	}

目标页面

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
	<h3>Success page</h3>
	time: ${requestScope.time }
	<br>
	names:${requestScope.names }
</body>
</html>

3.@SessionAttributes注解

这个注解需要使用在类上方,value对应的模型,是方法参数中map的key。该例子中,User会在SessionScope和RequestScope中存在。

@SessionAttributes(value={"user"}) //这里的user是map的key
@RequestMapping("/springmvc")
@Controller
public class SpringMVCTest {

	private static final String SUCCESS="success";
	
	@RequestMapping("/testSession")
	public String testSessionAttributes(Map<String ,Object> map){
		User user=new User("Tom","123231");
		map.put("user", user);
		return SUCCESS;
	}}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值