控制器处理方法的返回值如果为 ModelAndView, 则其既包含视图信息(View),也包含模型数据信息(Model)。
添加控制器方法
/** *
*目标方法的返回类型可以是 ModelAndView 类型
* 其中包含视图信息和模型数据信息
*/
public ModelAndView testModelAndView() {
ModelAndView modelAndView = new ModelAndView();
modelAndView.addObject("time", new Date());
modelAndView.setViewName("testView");
return modelAndView;
}
增加页面链接
<!--测试 ModelAndView 作为处理返回结果 -->
<ahref="springmvc/testModelAndView">testModelAndView</a>
添加成功页面,显示数据
time:${requestScope.time}
//目标方法的返回类型也可以是一个 Map 类型参数(也可以是 Model,或 ModelMap 类型)
@RequestMapping("/testMap")
public String testMap(Map<String,Object> map){
System.out.println(map.getClass().getName());
//org.springframework.validation.support.BindingAwareModelMap
map.put("names",Arrays.asList("Tom","Jerry","Kite"));
return"success";
}
若希望在多个请求之间共用某个模型属性数据,则可以在控制器类上标注一个 @SessionAttributes,SpringMVC 将在模型中对应的属性暂存到 HttpSession 中.
@SessionAttributes 除了可以通过属性名指定需要放到会话中的属性外,还可以通过模 型属性的对象类型指定哪些模型属性需要放到会话中
例如:
@SessionAttributes(types=User.class) 会 将 隐 含 模 型 中 所 有 类 型 为 User.class 的属性添加到会话中。
@SessionAttributes(value={“user1”, “user2”})
@SessionAttributes(types={User.class, Dept.class})
@SessionAttributes(value={“user1”, “user2”}, types={Dept.class})
@SessionAttributes 源码
package org.springframework.web.bind.annotation;
import java.lang.annotation.Documented;
importjava.lang.annotation.ElementType;
importjava.lang.annotation.Inherited;
importjava.lang.annotation.Retention;
importjava.lang.annotation.RetentionPolicy;
importjava.lang.annotation.Target;
@Target({ElementType.TYPE})//说明这个注解只能应用在类型上面
@Retention(RetentionPolicy.RUNTIME)
@Inherited
@Documented
public @interface SessionAttributes{
String[] value() default{}; //推荐使用
Class<?>[] types() default{}; //范围太广
}
实验代码:
@Controller
//@SessionAttributes("user")
@SessionAttributes(value={"user"},types={String.class})
public class SpringMVCController{
/**
*@SessionAttributes
* 除了可以通过属性名指定需要放到会话中的属性外(实际上是通过 value 指定 key值),
* 还可以通过模型属性的对象类型指定哪些模型属性需要放到会话中(实际上是通过 types 指定类型)
* 注意:只能放在类的上面,不能修饰方法
*/
@RequestMapping("/testSessionAttributes")
public String testSessionAttributes(Map<String,Object>map){
User user=new User("Tom","123","tom@atguigu.com",22);
map.put("user",user);
map.put("school","atguigu"); //默认是被存放到 request 域,如果设置了@SessionAttribute 注解,就同时存放到 session 域中
return"success";
}
}
<!--测试 @SessionAttribute 将数据存放到 session 域中 -->
<a href="testSessionAttributes">testSessionAttributes</a>
request user:${requestScope.user}<br><br>
session user:${sessionScope.user}<br><br>
request school:${requestScope.school}<br><br>
session school:${sessionScope.school}<br><br>
与servlet类似
<web-app
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version="3.1">
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<!--编码方便-->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>4.0.1</version>
<scope>provided</scope>
</dependency>
<bean id="internalResourceViewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
<property name="prefix" value="/WEB-INF/views/"/>
<property name="suffix" value=".jsp"/>
</bean>
#加入一行
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>