目标方法的返回值类型可以是ModelAndView类型。
其中可以包含视图和模型信息。
SpringMVC会把ModelAndView的model中的数据放到request域对象中。
testModelAndView类
@Controller
public class Hello {
@RequestMapping("/testMVC")
public ModelAndView testModelAndView(){
String viewName = "success";
ModelAndView mvc = new ModelAndView(viewName);
mvc.addObject("time",new Date());
return mvc;
}
}
success.jsp页面
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<h1>Success page</h1>
${requestScope.time }
</body>
</html>