使用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>