使用ModelAndView向request域對象共享數據
index.html
<a th:href="@{/testModelAndView}">使用ModelAndView</a>
控制器
/**
* ModelAndView有Model和View的功能
* Model主要用於向請求域共享數據
* View主要用於設置視圖,實現頁面跳轉
*/
@RequestMapping("/testModelAndView")
public ModelAndView success(){
ModelAndView modelAndView = new ModelAndView();
modelAndView.addObject("username","gonghr"); //向請求域共享數據
modelAndView.setViewName("success"); //設置視圖名稱,實現頁面跳轉
return modelAndView; //返回
}
success.html
sucess
<p th:text="${username}"></p>
使用Model向request域對象共享數據
index.html
<a th:href="@{/testModel}">使用Model</a> <br>
控制器
@RequestMapping("/testModel")
public String testModel(Model model){
model.addAttribute("company","JLU");
return "success";
}
success.html
sucess
<p th:text="${company}"></p> <br>
使用map向request域對象共享數據
index.html
<a th:href="@{/testMap}">使用Map</a> <br>
控制器
@RequestMapping("/testMap")
public String testMap(Map<String, Object> map){
map.put("age","Nineteen");
return "success";
}
sucess.html
sucess
<p th:text="${age}"></p> <br>
使用ModelMap向request域對象共享數據
index.html
<a th:href="@{/testModelMap}">使用ModelMap</a> <br>
控制器
@RequestMapping("/testModelMap")
public String testModelMap(ModelMap modelMap){
modelMap.addAttribute("major","software engineering");
return "success";
}
success.html
<p th:text="${major}"></p> <br>
Model、ModelMap、Map的關系
經過測試發現:除了ModelAndView
的實現類是ModelAndView
,Model
、Map
和ModelMap
的實現類都是BindingAwareModelMap
。
Model
、ModelMap
、Map
類型的參數其實本質上都是 BindingAwareModelMap
類型的
class of ModelAndView: class org.springframework.web.servlet.ModelAndView
class of Model: class org.springframework.validation.support.BindingAwareModelMap
class of Map: class org.springframework.validation.support.BindingAwareModelMap
class of ModelMap: class org.springframework.validation.support.BindingAwareModelMap
閱讀ModeAndView
的源碼可以發現,ModeAndView
和ModelMap
是組合關系。下面是ModeAndView
的部分源碼。
public class ModelAndView {
@Nullable
private ModelMap model;
public ModelAndView() {
}
public ModelMap getModelMap() {
if (this.model == null) {
this.model = new ModelMap();
}
return this.model;
}
public ModelAndView addObject(String attributeName, @Nullable Object attributeValue) {
this.getModelMap().addAttribute(attributeName, attributeValue);
return this;
}
當ModeAndView
調用addObject()
方法時其實是調用ModelMap
的addAttribute()
方法,本質上與ModelMap
是一樣的。
各個類之間的關系如下:
public interface Model{}
public class ModelMap extends LinkedHashMap<String, Object> {}
public class ExtendedModelMap extends ModelMap implements Model {}
public class BindingAwareModelMap extends ExtendedModelMap {}
四種方式本質上都是調用的Model
接口中的addAttribute
方法
向session域共享數據
index.html
<a th:href="@{/testSession}">使用Session</a> <br>
控制器
@RequestMapping("/testSession")
public String testSession(HttpSession session){
session.setAttribute("message","session scope");
return "success";
}
success.html
<p th:text="${session.message}"></p> <br>
向application域共享數據
index.html
<a th:href="@{/testApplication}">使用Application</a> <br>
控制器
@RequestMapping("/testApplication")
public String testApplication(HttpSession session){
ServletContext application = session.getServletContext();
application.setAttribute("testApplication","hello,application");
return "success";
}
success.html
<p th:text="${application.testApplication}"></p> <br>