SpringMVC基礎——@ModelAttribute和@SessionAttribute

来源:http://www.cnblogs.com/solverpeng/archive/2016/08/10/5753033.html
-Advertisement-
Play Games

一、@ModelAttribute 註解 對方法標註 @ModelAttribute 註解,在調用各個目標方法前都會去調用 @ModelAttribute 標記的註解。本質上來說,允許我們在調用目標方法前操縱模型數據。 1.在 @ModelAttribute 標註的方法處向模型中存入數據 說明一下: ...


一、@ModelAttribute 註解

對方法標註 @ModelAttribute 註解,在調用各個目標方法前都會去調用 @ModelAttribute 標記的註解。本質上來說,允許我們在調用目標方法前操縱模型數據。

1.在 @ModelAttribute 標註的方法處向模型中存入數據

說明一下:在@ModelAttribute 標註的方法處,可以入參的類型和目標方法處允許的入參類型一致,如 @RequestParam 標註的請求參數等等。

有兩種方式:

目標方法:

@RequestMapping("/updateStudent")
public String update(Student student) {
    System.out.println("student: " + student);
    return "success";
}

(1)通過向入參處添加 Model 類型或 Map 類型的參數(不推薦)

@ModelAttribute
public void getStudent(@RequestParam(value = "id", required = false) String idStr, Map<String, Object> map) {
    try {
        Integer id = Integer.parseInt(idStr);
        System.out.println("student id: " + id);
        map.put("student", new Student(1, "lisi", 23));
    } catch(NumberFormatException ignored) {
    }
}

在調用目標方法前,"student" 會被放入到 Model 中。至於說為什麼不推薦此種用法,是因為,最終還會向 model 中添加一個 key 為 void,值為 null 的數據。如圖:

(2)通過 @ModelAttribute 註解的 value 屬性和 @ModelAttribute 標註的方法返回值(推薦)

@ModelAttribute("student")
public Student getStudent(@RequestParam(value = "id", required = false) String idStr, Map<String, Object> map) {
    Student student = null;
    try {
        Integer id = Integer.parseInt(idStr);
        System.out.println("student id: " + id);
        student = new Student(1, "lisi", 23);
    } catch(NumberFormatException ignored) {
    }
    return student;
}

在調用目標方法前,model 中的數據:

model 中只有一個鍵值對。這種寫法更加優雅。

總結:SpringMVC 在調用目標方法前,將 @ModelAttribute 註解的 value 屬性值作為 key , 返回值作為 value,存入到 model 中。

源碼分析:

org.springframework.web.bind.annotation.support.HandlerMethodInvoker#invokeHandlerMethod

 1 public final Object invokeHandlerMethod(Method handlerMethod, Object handler,
 2             NativeWebRequest webRequest, ExtendedModelMap implicitModel) throws Exception {
 3 
 4     Method handlerMethodToInvoke = BridgeMethodResolver.findBridgedMethod(handlerMethod);
 5     try {
 6         boolean debug = logger.isDebugEnabled();
 7         for (String attrName : this.methodResolver.getActualSessionAttributeNames()) {
 8             Object attrValue = this.sessionAttributeStore.retrieveAttribute(webRequest, attrName);
 9             if (attrValue != null) {
10                 implicitModel.addAttribute(attrName, attrValue);
11             }
12         }
13         //開始調用標註有 @ModelAttribute 註解的方法
14         for (Method attributeMethod : this.methodResolver.getModelAttributeMethods()) {
15             Method attributeMethodToInvoke = BridgeMethodResolver.findBridgedMethod(attributeMethod);
16             Object[] args = resolveHandlerArguments(attributeMethodToInvoke, handler, webRequest, implicitModel);
17             if (debug) {
18                 logger.debug("Invoking model attribute method: " + attributeMethodToInvoke);
19             }
20             String attrName = AnnotationUtils.findAnnotation(attributeMethod, ModelAttribute.class).value();
21             if (!"".equals(attrName) && implicitModel.containsAttribute(attrName)) {
22                 continue;
23             }
24             ReflectionUtils.makeAccessible(attributeMethodToInvoke);
25             Object attrValue = attributeMethodToInvoke.invoke(handler, args);
26             if ("".equals(attrName)) {
27                 Class<?> resolvedType = GenericTypeResolver.resolveReturnType(attributeMethodToInvoke, handler.getClass());
28                 attrName = Conventions.getVariableNameForReturnType(attributeMethodToInvoke, resolvedType, attrValue);
29             }
30             if (!implicitModel.containsAttribute(attrName)) {
31                 implicitModel.addAttribute(attrName, attrValue);
32             }
33         }
34         Object[] args = resolveHandlerArguments(handlerMethodToInvoke, handler, webRequest, implicitModel);
35         if (debug) {
36             logger.debug("Invoking request handler method: " + handlerMethodToInvoke);
37         }
38         ReflectionUtils.makeAccessible(handlerMethodToInvoke);
39         //調用目標方法
40         return handlerMethodToInvoke.invoke(handler, args);
41     }
42     catch (IllegalStateException ex) {
43         // Internal assertion failed (e.g. invalid signature):
44         // throw exception with full handler method context...
45         throw new HandlerMethodInvocationException(handlerMethodToInvoke, ex);
46     }
47     catch (InvocationTargetException ex) {
48         // User-defined @ModelAttribute/@InitBinder/@RequestMapping method threw an exception...
49         ReflectionUtils.rethrowException(ex.getTargetException());
50         return null;
51     }
52 }

行號14 處的 for 迴圈就是處理 @ModleAttribute 標註的方法的,在40行處調用目標方法——在調用目標方法前調用 @ModelAttribute 標註的方法。

在 16 行處已經對請求參數做了一次解析——在@ModelAttribute 標註的方法處,可以入參的類型和目標方法處允許的入參類型一致

 20行、25行、31行——第二種方式,同時也明白如果 model 中包含相同的 key 時,是不會替換的。

2.在目標方法處讀取模型中的數據

@ModelAttribute("student")
public Student getStudent() {
    return new Student(1, "lisi", 23);
}

@ModelAttribute("student2")
public Student getStudent2() {
    return new Student(2, "wangwu", 33);
}

(1)在目標方法入參處不使用 @ModelAttribute 註解

@RequestMapping("/updateStudent")
public String update(Student student2) {
    System.out.println("student: " + student2);
    return "success";
}

控制台輸出:

student: Student{id=23, studentName='lisi', age=23}

(2)在目標方法入參處使用 @ModelAttribute 註解

@RequestMapping("/updateStudent")
public String update(@ModelAttribute("student2") Student student2) {
    System.out.println("student: " + student2);
    return "success";
}

控制台輸出:

student: Student{id=23, studentName='wangwu', age=33}

(3)源碼分析

org.springframework.web.bind.annotation.support.HandlerMethodInvoker#resolveHandlerArguments

這個方法行數太多了,我們只看關註點:

289行:如果目標方法入參有標記 @ModelAttribute ,獲取它 的 value 屬性。

else if (ModelAttribute.class.isInstance(paramAnn)) {
    ModelAttribute attr = (ModelAttribute) paramAnn;
    attrName = attr.value();
    annotationsFound++;
}

361行:

else if (attrName != null) {
    WebDataBinder binder =
            resolveModelAttribute(attrName, methodParam, implicitModel, webRequest, handler);
    boolean assignBindingResult = (args.length > i + 1 && Errors.class.isAssignableFrom(paramTypes[i + 1]));
    if (binder.getTarget() != null) {
        doBind(binder, webRequest, validate, validationHints, !assignBindingResult);
    }
    args[i] = binder.getTarget();
    if (assignBindingResult) {
        args[i + 1] = binder.getBindingResult();
        i++;
    }
    implicitModel.putAll(binder.getBindingResult().getModel());
}

不論是對目標方法入參有沒有標註 @ModelAttribute 註解,最終都會執行到這裡。

看標紅的地方:在這裡進行解析的。

private WebDataBinder resolveModelAttribute(String attrName, MethodParameter methodParam,
            ExtendedModelMap implicitModel, NativeWebRequest webRequest, Object handler) throws Exception {

    // Bind request parameter onto object...
    String name = attrName;
    if ("".equals(name)) {
        name = Conventions.getVariableNameForParameter(methodParam);
    }
    Class<?> paramType = methodParam.getParameterType();
    Object bindObject;
    if (implicitModel.containsKey(name)) {
        bindObject = implicitModel.get(name);
    }
    else if (this.methodResolver.isSessionAttribute(name, paramType)) {
        bindObject = this.sessionAttributeStore.retrieveAttribute(webRequest, name);
        if (bindObject == null) {
            raiseSessionRequiredException("Session attribute '" + name + "' required - not found in session");
        }
    }
    else {
        bindObject = BeanUtils.instantiateClass(paramType);
    }
    WebDataBinder binder = createBinder(webRequest, bindObject, name);
    initBinder(handler, name, binder, webRequest);
    return binder;
}

註意:

String name = attrName;
if ("".equals(name)) {
  name = Conventions.getVariableNameForParameter(methodParam);
}

如果沒有指定,則通過  Conventions.getVariableNameForParameter(methodParam) 獲取一個預設值。

if (implicitModel.containsKey(name)) {
  bindObject = implicitModel.get(name);
}

從 model中獲取,最後執行綁定。

(4)總結:使用在目標方法入參處的 @ModelAttribute 只能起到一個 指定 attrName 的作用,即從 Model 獲取數據的 key。

<1>目標方法處的實體形參命名與 @ModelAttribute 方法標註的方法返回值之間沒有任何關係,只是類型有關係。

<2>在目標方法入參處不使用 @ModelAttribute 註解的情況:

不需要通過 @ModelAttribute 註解來指定需要使用哪個 @ModelAttribute 標註的方法的 value 屬性值。存在多個的話,使用預設值。

<3>在目標方法入參處需要使用 @ModelAttribute 註解的情況:

存在多個 @ModelAttribute 標註的方法,返回值為同一個類型A,且 @ModelAttribute 的 value 屬性值不同,在目標方法處,需要以 A 實體作為入參,但是需要不使用預設的 a ,而是需要使用指定

的 a2。這個時候,就需要在目標方法的入參處使用 @ModelAttribute,通過 value 屬性來指定使用哪個。

二、@SessionAttribute

1.官方說明

2.對 SessionAttribute 這裡有篇帖子總結的非常好,我這裡就不再贅述。

http://blog.sina.com.cn/s/blog_6d3c1ec601018cx1.html

3.我自己的理解:

@SessionAttribute 指的是 springmvc 的 session。向其中添加值得時候,同時會向 http session 中添加一條。在 sessionStatus.setComplete(); 的時候,會清空 sprinmvc

的 session,同時清除對應鍵的 http session 內容,但是通過,request.getSession.setAttribute() 方式添加的內容不會被清除掉。

其他情況下,springmvc session 和 http session使用情況相同。


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 函數式編程即函數可以作為參數傳入函數,也可以返回函數。 1.高階函數 函數可以作為參數傳入函數。 def add(x,y,f): return f(x)+f(y) 調用add函數add(3,-4,abs) ,結果為7 2.map/reduce def f(x): return x*x map(f,[ ...
  • 概述 工作中我們在網路傳輸時使用time_t來傳輸時間,在顯示時使用字元串來顯示,下麵是一個日期轉換類的實現,方便以後使用: 下麵是DateTime的具體使用例子: c++ // main.cpp include include "DateTime.hpp" int main() { std::st ...
  • 本文部分內容參考了C Primer Plus(sixth edition)一書 存儲類別和記憶體分佈 簡單介紹一下變數的存儲類別和它的記憶體分佈,我們先通過一張表來瞭解一些基本術語: 〉〉塊指的是一對花括弧括起來的代碼。C99之後,塊也可以是迴圈語句+迴圈體(單一語句)。具有塊作用域的變數只能在塊內可見 ...
  • app讓個別界面橫屏,其他的為豎屏,解決如下 APP設置裡面,一定要設置可以旋轉的方向 appdelegate裡面重新系統方向代理 func application(application: UIApplication, supportedInterfaceOrientationsForWindow ...
  • 在Python shell中輸入import this就會在屏幕上列印出來Python的設計哲學,如下: 大概意思大家可以看一下,也可以大概的理解Python為什麼是這樣的,同時,我們寫的代碼應該是什麼樣的了。 今天突然好奇是怎麼實現的,於是就探究了一下,先看this是啥: 可以看出來是一個模塊,里 ...
  • 1、絕對路徑 os.path.abspath("文件名"): 顯示的是一個文件的絕對路勁 eg: 2、相對路徑 os.path.dirname("文件名"): 顯示的是一個文件的相對路徑 eg: 3、總結 一般情況下,絕對路勁函數和相對路徑函數是結合起來用的,特別是在多個文件包之前相互導入 ①os. ...
  • (1)、模塊標準模塊、第三方模塊初識模塊:sys \ os一般標準庫存放路徑 C:\Users\Administrator\AppData\Local\Programs\Python\Python35\Lib第三方引用安裝庫存放路徑:C:\Users\Administrator\AppData\Lo ...
  • Structs2中的Bean預設的是單例,在整個程式運行期間,每個Bean只有一個實例,只要程式在運行,這個實例就一直存在。 對於Action來說,單例就容易出問題。如果客戶端每次提交的參數都是一樣的,後面提交的值把前面提交的值覆蓋了,那問題還不是很大。但是如果存在可選參數的情況,比如上次提交的是參 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...