SpringMvc 学习 -- ModelAndView和Model和ModelMap之间的区别
SpringMvc 学习 – ModelAndView和Model和ModelMap之间的区别
前言
- model
- modelAndView
- ModeMap
MODEL
Model 是一个接口, 其实现类为ExtendedModelMap,继承了ModelMap类。
ModelMap
基本看到上面的Model接口实现类,继承了ModelMap就应该理解了。Model接口的传参,其实也是调用ModelMap的方法
而ModelMap对象主要用于传递控制方法处理数据到结果页面,也就是说我们把结果页面上需要的数据放到ModelMap对象中即可,他的作用类似于request对象的setAttribute方法的作用,用来在一个请求过程中传递处理的数据。通过以下方法向页面传递参数:
addAttribute(String key,Object value);
在页面上可以通过el变量方式$key或者bboss的一系列数据展示标签获取并展示modelmap中的数据。
modelmap本身不能设置页面跳转的url地址别名或者物理跳转地址,那么我们可以通过控制器方法的返回值来设置跳转url地址别名或者物理跳转地址。
ModelAndView
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//
package org.springframework.web.servlet;
import java.util.Map;
import org.springframework.ui.ModelMap;
import org.springframework.util.CollectionUtils;
public class ModelAndView {
private Object view;
private ModelMap model;
private boolean cleared = false;
public ModelAndView() {
}
返回一个String springMVC会转发到页面
public ModelAndView(String viewName) {
this.view = viewName;
}
public ModelAndView(View view) {
this.view = view;
}
public ModelAndView(String viewName, Map<String, ?> model) {
this.view = viewName;
if (model != null) {
this.getModelMap().addAllAttributes(model);
}
}
public ModelAndView(View view, Map<String, ?> model) {
this.view = view;
if (model != null) {
this.getModelMap().addAllAttributes(model);
}
}
public ModelAndView(String viewName, String modelName, Object modelObject) {
this.view = viewName;
this.addObject(modelName, modelObject);
}
public ModelAndView(View view, String modelName, Object modelObject) {
this.view = view;
this.addObject(modelName, modelObject);
}
添加String
public void setViewName(String viewName) {
this.view = viewName;
}
public String getViewName() {
return this.view instanceof String ? (String)this.view : null;
}
public void setView(View view) {
this.view = view;
}
public View getView() {
return this.view instanceof View ? (View)this.view : null;
}
public boolean hasView() {
return this.view != null;
}
public boolean isReference() {
return this.view instanceof String;
}
protected Map<String, Object> getModelInternal() {
return this.model;
}
public ModelMap getModelMap() {
if (this.model == null) {
this.model = new ModelMap();
}
return this.model;
}
public Map<String, Object> getModel() {
return this.getModelMap();
}
调用ModelMap
public ModelAndView addObject(String attributeName, Object attributeValue) {
this.getModelMap().addAttribute(attributeName, attributeValue);
return this;
}
调用ModelMap
public ModelAndView addObject(Object attributeValue) {
this.getModelMap().addAttribute(attributeValue);
return this;
}
调用ModelMap
public ModelAndView addAllObjects(Map<String, ?> modelMap) {
this.getModelMap().addAllAttributes(modelMap);
return this;
}
public void clear() {
this.view = null;
this.model = null;
this.cleared = true;
}
public boolean isEmpty() {
return this.view == null && CollectionUtils.isEmpty(this.model);
}
public boolean wasCleared() {
return this.cleared && this.isEmpty();
}
public String toString() {
StringBuilder sb = new StringBuilder("ModelAndView: ");
if (this.isReference()) {
sb.append("reference to view with name '").append(this.view).append("'");
} else {
sb.append("materialized View is [").append(this.view).append(']');
}
sb.append("; model is ").append(this.model);
return sb.toString();
}
}
ModelAndView对象有两个作用:
作用一 设置转向地址,如下所示(这也是ModelAndView和ModelMap的主要区别)
ModelAndView view = new ModelAndView(“path:ok”);
作用二 用于传递控制方法处理结果数据到结果页面,也就是说我们把需要在结果页面上需要的数据放到ModelAndView对象中即可,他的作用类似于request对象的setAttribute方法的作用,用来在一个请求过程中传递处理的数据。通过以下方法向页面传递参数:
addObject(String key,Object value);
在页面上可以通过el变量方式$key或者bboss的一系列数据展示标签获取并展示ModelAndView中的数据。
推荐阅读
-
SpringMVC中Model和ModelAndView的EL表达式取值方法
-
Model、ModelMap、ModelAndView的使用和区别
-
学习-VLAN之间ACL和VACL的区别
-
Model、ModelMap、ModelAndView的使用和区别
-
SpringMvc中Model、ModelMap、ModelAndView理解和具体使用总结
-
Model、ModelMap和ModelAndView的使用详解
-
SpringMVC~使用RestFul风格和SpringMVC俩种方式接收数据, 对比model、modelMap、modelAndView三种方式数据显示到前端
-
SpringMVC中的Model和ModelAndView详解
-
SpringMvc 学习 -- ModelAndView和Model和ModelMap之间的区别