RestTemplate post請求使用map傳參 Controller 接收不到值的解決方案 postForObject方法源碼解析.md

来源:https://www.cnblogs.com/eternityz/archive/2020/01/29/12241392.html
-Advertisement-
Play Games

結論 RestTemplate 的 postForObject 方法有四個參數 String url = 顧名思義 這個參數是請求的url路徑 Object request = 請求的body 這個參數需要再controller類用 @RequestBody 註解接收 Class responseT ...


結論

post方法中如果使用map傳參,需要使用MultiValueMap來傳遞

RestTemplate 的 postForObject 方法有四個參數

  • String url => 顧名思義 這個參數是請求的url路徑

  • Object request => 請求的body 這個參數需要再controller類用 @RequestBody 註解接收

  • Class responseType => 接收響應體的類型

  • 第四個參數 postForObject 方法多種重構

    Map<String,?> uriVariables => uri 變數 顧名思義 這是放置變數的地方

    Object... uriVariables => 可變長 Object 類型 參數

@Nullable
public <T> T postForObject(String url, @Nullable Object request, Class<T> responseType, Object... uriVariables) throws RestClientException {
    RequestCallback requestCallback = this.httpEntityCallback(request, responseType);
    HttpMessageConverterExtractor<T> responseExtractor = new HttpMessageConverterExtractor(responseType, this.getMessageConverters(), this.logger);
    return this.execute(url, HttpMethod.POST, requestCallback, responseExtractor, (Object[])uriVariables);
}

@Nullable
public <T> T postForObject(String url, @Nullable Object request, Class<T> responseType, Map<String, ?> uriVariables) throws RestClientException {
    RequestCallback requestCallback = this.httpEntityCallback(request, responseType);
    HttpMessageConverterExtractor<T> responseExtractor = new HttpMessageConverterExtractor(responseType, this.getMessageConverters(), this.logger);
    return this.execute(url, HttpMethod.POST, requestCallback, responseExtractor, (Map)uriVariables);
}

@Nullable
public <T> T postForObject(URI url, @Nullable Object request, Class<T> responseType) throws RestClientException {
    RequestCallback requestCallback = this.httpEntityCallback(request, responseType);
    HttpMessageConverterExtractor<T> responseExtractor = new HttpMessageConverterExtractor(responseType, this.getMessageConverters());
    return this.execute(url, HttpMethod.POST, requestCallback, responseExtractor);
}

首先我們使用最簡單的一種 可變長Object 參數 進行傳值

@Service
public class HelloService {
 
    @Autowired
    RestTemplate restTemplate;
 
    public String helloService(String name,Integer age){
        return restTemplate.postForObject("http://SERVICE-HELLO/hello?name={name}&age={age}", null, String.class, name,age);
    }
}

需要再url上拼接參數並使用{參數名}占位符站位

然後將參數放到 第四個參數 可變長 Object 參數上 即可

Controller類代碼

@RestController
public class DemoController {
    @Value("${server.port}")
    String port;
 
    @PostMapping("hello")
    public String home(String name,Integer age){
        return "hello " + name + " you age is " + age + " ,i am from port:" + port;
    }
}

測試成功

接下來我們使用 Map傳值 

map傳值也很簡單

public String helloService(String name,Integer age){
    Map<String,Object> map = new HashMap<>();
    map.put("name",name);
    map.put("age",age);
    return restTemplate.postForObject("http://SERVICE-HELLO/hello?name={name}&age={age}", null, String.class, map);
}

只需要將參數放入到map中即可

那有些人要問了 , 為什麼不能用 第二個 request 參數傳值 , 其實是可以的

我試過用HashMap 和 LinkedHashMap 都是接收不到的

所以我們來看一下源碼是怎麼寫的

首先進入到 postForObject 方法中 發現request 參數 傳入了一個 httpEntityCallBack 方法中 , 那麼接著追蹤

@Nullable
public <T> T postForObject(String url, @Nullable Object request, Class<T> responseType, Map<String, ?> uriVariables) throws RestClientException {
    RequestCallback requestCallback = this.httpEntityCallback(request, responseType);
    HttpMessageConverterExtractor<T> responseExtractor = new HttpMessageConverterExtractor(responseType, this.getMessageConverters(), this.logger);
    return this.execute(url, HttpMethod.POST, requestCallback, responseExtractor, (Map)uriVariables);
}

進入httpEntityCallBack方法中
httpEntityCallBack方法又調用了 RestTemplate的HttpEntityRequestCallback方法

public <T> RequestCallback httpEntityCallback(@Nullable Object requestBody, Type responseType) {
    return new RestTemplate.HttpEntityRequestCallback(requestBody, responseType);
}

進入HttpEntityRequestCallback

這裡會出現一個分支 instanceof 類型判定 requestBody 參數是否是 HttpEntity類型

public HttpEntityRequestCallback(@Nullable Object requestBody, @Nullable Type responseType) {
    super(responseType);
    if (requestBody instanceof HttpEntity) {
        this.requestEntity = (HttpEntity)requestBody;
    } else if (requestBody != null) {
        this.requestEntity = new HttpEntity(requestBody);
    } else {
        this.requestEntity = HttpEntity.EMPTY;
    }

}

如果不是則 創建一個HttpEntity類將 requestBody 參數傳入

那麼我們來看一下 HttpEntity 是怎麼個構造

public HttpEntity(T body) {
    this(body, (MultiValueMap)null);
}

public HttpEntity(MultiValueMap<String, String> headers) {
    this((Object)null, headers);
}

這裡可以看到 HttpEntity 有兩個構造方法 一個是 傳入 泛型的body 另一個是傳入 MultiValueMap<String,String> headers

那麼 這個MultiValueMap 是個什麼東東

百度一下 發現

MultiValueMap 可以讓一個key對應多個value,感覺是value產生了鏈表結構,可以很好的解決一些不好處理的字元串問題

那麼我們來用這個奇怪的map實驗一下

首先進入 MultiValueMap 介面 找到他的實現類

實現類到idea中查找

MultiValueMap 的實現類應該是 LinkedMultiValueMap

那麼我們走起

public String helloService(String name,Integer age){
    MultiValueMap<String, Object> paramMap = new LinkedMultiValueMap<>();
    paramMap.add("name",name);
    paramMap.add("age", age);
    return restTemplate.postForObject("http://SERVICE-HELLO/hello",paramMap,String.class);
}

controller代碼

public class DemoController {
 
    @Value("${server.port}")
    String port;
 
    @PostMapping("hello")
    public String home(String name,Integer age){
        return "MultiValueMap : hello " + name + " you age is " + age + " ,i am from port:" + port;
    }
}

測試成功

參考

原文:https://blog.csdn.net/weixin_40461281/article/details/83472648


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

-Advertisement-
Play Games
更多相關文章
  • 昨天簡單的看了看Unsafe的使用,今天我們看看JUC中的原子類是怎麼使用Unsafe的,以及分析一下其中的原理! 一.簡單使用AtomicLong 還記的上一篇博客中我們使用了volatile關鍵字修飾了一個int類型的變數,然後兩個線程,分別對這個變數進行10000次+1操作,最後結果不是200 ...
  • 大體流程: 1、瀏覽器向web伺服器發送HTTP請求 2、DispatcherServlet攔截所有請求,將請求地址(url)傳給HandlerMapping 3、HandlerMapping根據url-controller之間的映射關係,確定要調用的controller,並將要調用哪個contro ...
  • Apache Shiro是一個功能強大且易於使用的Java安全框架,它為開發人員提供了一種直觀,全面的身份驗證,授權,加密和會話管理解決方案。下麵是在SpringBoot中使用Shiro進行認證和授權的例子,代碼如下: pom.xml 導入SpringBoot和Shiro依賴: 也可以直接導入Apa ...
  • 有如下兩個切點: 此時可以這麼寫 ...
  • 問題場景 場景很簡單,就是一個正常 axios post 請求: 後臺說沒有接收到你的傳參。 這就有點奇怪了,我看了一下瀏覽器的請求信息是 OK 的,參數都是有的,而且之前這樣用 axios 也沒有這個問題。 但是這個介面是通用的,別人都用了,是 OK 的,介面沒問題。 問題原因 要點1 原因就是這 ...
  • 簡要原理: 1)DataSourceEnum列出所有的數據源的key key 2)DataSourceHolder是一個線程安全的DataSourceEnum容器,並提供了向其中設置和獲取DataSourceEnum的方法 3)DynamicDataSource繼承AbstractRoutingDa ...
  • 當使用 RestTemplate 可能會遇到異常: 典型如下: 這樣使用,會出現如下報錯信息: 這個地方很令人費解,難道不能這樣使用?經過一頓查找,發現原來是因為。。。 url因為本身的原因,把花括弧 { } 中的內容當成了占位符,而這裡又沒有明確說明占位符對應的值,所以會導致報錯。 只需要簡單幾步 ...
  • HandlerMapping 處理器映射 HTTP請求被DispatcherServlet攔截後,會調用HandlerMapping來處理,HandlerMapping根據 url<=>controller 之間的映射關係來確定要調用哪個controller來處理。 有2種HandlerMappin ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...