SpringMVC源碼解讀 - RequestMapping註解實現解讀 - RequestMappingInfo

来源:http://www.cnblogs.com/leftthen/archive/2016/02/24/5210837.html
-Advertisement-
Play Games

使用@RequestMapping註解時,配置的信息最後都設置到了RequestMappingInfo中. RequestMappingInfo封裝了PatternsRequestCondition,RequestMethodsRequestCondition,ParamsRequestCondit...


使用@RequestMapping註解時,配置的信息最後都設置到了RequestMappingInfo中.

RequestMappingInfo封裝了PatternsRequestCondition,RequestMethodsRequestCondition,ParamsRequestCondition等,所以自己不幹活,所有的活都是委托給具體的condition處理.

 

先看下封裝的RequestCondition吧,之前的文章將的比較細了,不清楚各個類具體是做什麼的,可以移步這裡<SpringMVC源碼解讀 - RequestMapping註解實現解讀 - RequestCondition體系>

 1 package org.springframework.web.servlet.mvc.method;
 2 public final class RequestMappingInfo implements RequestCondition<RequestMappingInfo> {
 3 
 4     private final PatternsRequestCondition patternsCondition;
 5 
 6     private final RequestMethodsRequestCondition methodsCondition;
 7 
 8     private final ParamsRequestCondition paramsCondition;
 9 
10     private final HeadersRequestCondition headersCondition;
11 
12     private final ConsumesRequestCondition consumesCondition;
13 
14     private final ProducesRequestCondition producesCondition;
15 
16     private final RequestConditionHolder customConditionHolder;
17 }

 

初始化沒什麼好看的,直接看介面的實現吧.

貌似combine也沒啥料,就是分別委托

 1     /**
 2      * Combines "this" request mapping info (i.e. the current instance) with another request mapping info instance.
 3      * <p>Example: combine type- and method-level request mappings.
 4      * @return a new request mapping info instance; never {@code null}
 5      */
 6     public RequestMappingInfo combine(RequestMappingInfo other) {
 7         PatternsRequestCondition patterns = this.patternsCondition.combine(other.patternsCondition);
 8         RequestMethodsRequestCondition methods = this.methodsCondition.combine(other.methodsCondition);
 9         ParamsRequestCondition params = this.paramsCondition.combine(other.paramsCondition);
10         HeadersRequestCondition headers = this.headersCondition.combine(other.headersCondition);
11         ConsumesRequestCondition consumes = this.consumesCondition.combine(other.consumesCondition);
12         ProducesRequestCondition produces = this.producesCondition.combine(other.producesCondition);
13         RequestConditionHolder custom = this.customConditionHolder.combine(other.customConditionHolder);
14 
15         return new RequestMappingInfo(patterns, methods, params, headers, consumes, produces, custom.getCondition());
16     }

 

getMatchingCondition只是體現出可能基於性能消耗的考慮,把PatternsRequestCondition和RequestConditionHolder的比較放到後面單獨處理了.

 1     /**
 2      * Checks if all conditions in this request mapping info match the provided request and returns
 3      * a potentially new request mapping info with conditions tailored to the current request.
 4      * <p>For example the returned instance may contain the subset of URL patterns that match to
 5      * the current request, sorted with best matching patterns on top.
 6      * @return a new instance in case all conditions match; or {@code null} otherwise
 7      */
 8     public RequestMappingInfo getMatchingCondition(HttpServletRequest request) {
 9         RequestMethodsRequestCondition methods = methodsCondition.getMatchingCondition(request);
10         ParamsRequestCondition params = paramsCondition.getMatchingCondition(request);
11         HeadersRequestCondition headers = headersCondition.getMatchingCondition(request);
12         ConsumesRequestCondition consumes = consumesCondition.getMatchingCondition(request);
13         ProducesRequestCondition produces = producesCondition.getMatchingCondition(request);
14 
15         if (methods == null || params == null || headers == null || consumes == null || produces == null) {
16             return null;
17         }
18 
19         PatternsRequestCondition patterns = patternsCondition.getMatchingCondition(request);
20         if (patterns == null) {
21             return null;
22         }
23 
24         RequestConditionHolder custom = customConditionHolder.getMatchingCondition(request);
25         if (custom == null) {
26             return null;
27         }
28 
29         return new RequestMappingInfo(patterns, methods, params, headers, consumes, produces, custom.getCondition());
30     }

 

compareTo就是排了個不同RequestCondition的優先順序

 1     /**
 2      * Compares "this" info (i.e. the current instance) with another info in the context of a request.
 3      * <p>Note: it is assumed both instances have been obtained via
 4      * {@link #getMatchingCondition(HttpServletRequest)} to ensure they have conditions with
 5      * content relevant to current request.
 6      */
 7     public int compareTo(RequestMappingInfo other, HttpServletRequest request) {
 8         int result = patternsCondition.compareTo(other.getPatternsCondition(), request);
 9         if (result != 0) {
10             return result;
11         }
12         result = paramsCondition.compareTo(other.getParamsCondition(), request);
13         if (result != 0) {
14             return result;
15         }
16         result = headersCondition.compareTo(other.getHeadersCondition(), request);
17         if (result != 0) {
18             return result;
19         }
20         result = consumesCondition.compareTo(other.getConsumesCondition(), request);
21         if (result != 0) {
22             return result;
23         }
24         result = producesCondition.compareTo(other.getProducesCondition(), request);
25         if (result != 0) {
26             return result;
27         }
28         result = methodsCondition.compareTo(other.getMethodsCondition(), request);
29         if (result != 0) {
30             return result;
31         }
32         result = customConditionHolder.compareTo(other.customConditionHolder, request);
33         if (result != 0) {
34             return result;
35         }
36         return 0;
37     }

 

覆寫的equals,hashCode,toString不看也罷

 


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

-Advertisement-
Play Games
更多相關文章
  • 安裝JDK 選擇安裝目錄 安裝過程中會出現兩次 安裝提示 。第一次是安裝 jdk ,第二次是安裝 jre 。建議兩個都安裝在同一個java文件夾中的不同文件夾中。(不能都安裝在java文件夾的根目錄下,jdk和jre安裝在同一文件夾會出錯) 如下圖所示 1:安裝jdk 隨意選擇目錄 只需把預設安裝目...
  • 半形全形的處理是字元串處理的常見問題,本文嘗試為大家提供一個思路。 一、概念 全形字元unicode編碼從65281~65374 (十六進位 0xFF01 ~ 0xFF5E)半形字元unicode編碼從33~126 (十六進位 0x21~ 0x7E)空格比較特殊,全形為 12288(0x3000),
  • 指針: 一、聲明 一個 int 類型的 指針 然後 賦值。 二、聲明中直接賦值。 三、空指針 四、懸空指針 野指針: 懸空指針本質上就是 聲明瞭一個 指針類型的變數【如:int *p】,並且沒有賦值。在沒有賦初值的情況下,利用這個指針進行修改【如:*p=100】。就相當於這個指針指向了一個未知的地址
  • 之前在[譯]更快的方式實現PHP數組去重討論了使用array_flip後再調用array_keys函數替換直接調用array_unique函數實現數組去重性能較好。由於原文沒有給出源碼分析和測試的結果,導致給讀者造成迷惑,在此說聲抱歉。為瞭解開讀者的疑惑,筆者承諾了會補上源碼的分析,現在此補上詳細的...
  • 原文:https://nikic.github.io/2012/03/28/Understanding-PHPs-internal-array-implementation.html 歡迎來到”給PHP開發者的PHP源碼”系列的第四部分,這一部分我們會談論PHP數組在內部是如何表示和在代碼庫里使用...
  • 在PHP的核心代碼中,變數被稱為ZVAL。這個結構之所以那麼重要是有原因的,不僅僅是因為PHP使用弱類型而C使用強類型。那麼ZVAL是怎麼解決這個問題的呢?要回答這個問題,我們需要認真的查看ZVAL類型的定義。要查看這個定義,讓我們嘗試在lxr頁面的定義搜索框里搜索zval。乍一眼看去,我們似乎找不...
  • /** * 計算百分比. * @param dividend 被除數 * @param divisor 除數 * @return 結果 */ private String getPercent(long dividend, long divisor) { NumberFormat format =
  • ant匹配規則;PathMatcher介面;通過測試用例看AntPathMatcher的使用
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...