【SpringMVC】域物件共享資料

gonghr發表於2021-08-29

使用ModelAndView向request域物件共享資料

index.html

<a th:href="@{/testModelAndView}">使用ModelAndView</a>

image
控制器

    /**
     * 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>

image

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

image

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

image

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

image

Model、ModelMap、Map的關係

經過測試發現:除了ModelAndView的實現類是ModelAndViewModelMapModelMap 的實現類都是BindingAwareModelMap

ModelModelMapMap型別的引數其實本質上都是 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的原始碼可以發現,ModeAndViewModelMap是組合關係。下面是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()方法時其實是呼叫ModelMapaddAttribute()方法,本質上與ModelMap是一樣的。

各個類之間的關係如下:

public interface Model{}
public class ModelMap extends LinkedHashMap<String, Object> {}
public class ExtendedModelMap extends ModelMap implements Model {}
public class BindingAwareModelMap extends ExtendedModelMap {}

image

四種方式本質上都是呼叫的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>

image

向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>

image

相關文章