中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringCloud Feign參數問題及解決方法

發布時間:2020-09-12 07:07:11 來源:腳本之家 閱讀:524 作者:慕塵 欄目:編程語言

這篇文章主要介紹了SpringCloud Feign參數問題及解決方法,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下

今天遇到使用Feign調用微服務,傳遞參數時遇到幾個問題

1.無參數

以GET方式請求

服務提供者

@RequestMapping("/hello")
public String Hello(){
  return "hello,provider";
}

服務消費者

@GetMapping("/hello")
String hello();

2.單個參數

(1)GET——@PathVariable

服務提供者

@GetMapping("/test/{name}")
public String test(@PathVariable String name){
  return "hello,"+name;
}

服務消費者

@GetMapping("/test/{name}")
String test(@PathVariable("name") String name);

(2)GET——@RequestParam

服務提供者

@RequestMapping("/test")
public String test(String name){return "hello,"+name;
}

服務消費者

@RequestMapping("/test")
String test(@RequestParam String name);

會遇到報錯

RequestParam.value() was empty on parameter 0

解決方法:

  加上注解的描述,修改為

@RequestMapping("/test")
String test(@RequestParam("name") String name);

(3)POST

@RequestBody

不需要注解的描述

@RequestMapping("/test")
String test(@RequestBody String name);

注:

  •   參數前使用了@RequestBody注解的,都以POST方式消費服務
  •   @RequestBody注解的參數,需要POST方式才能傳遞數據

2.Feign多參數的問題

(1)GET——@PathVariable

服務提供者

@GetMapping("/test/{name}/{xyz}")
public String test(@PathVariable String name,@PathVariable String xyz){
    return "hello,"+name+","+xyz;
}

服務消費者

@GetMapping("/test/{name}/{xyz}")
String test(@PathVariable("name") String name,@PathVariable("xyz") String xyz);

(1)GET——@RequestParam

服務提供者

@RequestMapping("/test")
public String test(String name,Integer type){
  if(type==1){
    return "hello,"+name;
  }else{
    return "hello,provider-"+name;
  }
}

服務消費者

@RequestMapping("/test")
String test(String name, Integer type);

會遇到報錯Method has too many Body parameters

說明:

  如果服務消費者傳過來參數時,全都用的是@RequestParam的話,那么服務提供者的Controller中對應參數前可以寫@RequestParam,也可以不寫

  服務消費者feign調用時,在所有參數前加上@RequestParam注解

正確的寫法

@RequestMapping("/test")
String test(@RequestParam("name") String name, @RequestParam("type") Integer type);

(2)POST

如果接收方不變

服務消費者

@RequestMapping("/test")
String test(@RequestBody String name, @RequestBody Integer type);

會遇到報錯Method has too many Body parameters

服務消費者為

@RequestMapping("/test")
String test(@RequestBody String name, @RequestParam("type") Integer type);

name的值會為null

說明:

如果服務消費者傳過來參數,有@RequestBody的話,那么服務提供者的Controller中對應參數前必須要寫@RequestBody

正確的寫法

服務提供者

@RequestMapping("/test")
  public String test(@RequestBody String name, Integer type){
    if(type==1){
      return "hello,"+name;
    }else{
      return "hello,provider-"+name;
    }
  }

服務消費者正確的寫法

@RequestMapping("/test")
String test(@RequestBody String name, @RequestParam("type") Integer type);

可以接收到參數

總結:

  •   請求參數前加上注解@PathVariable、@RequestParam或@RequestBody修飾
  •   可以有多個@RequestParam,但只能有不超過一個@RequestBody
  •   使用@RequestParam注解時必須要在后面加上參數名
  •   @RequestBody用來修飾對象,但是既有@RequestBody也有@RequestParam,那么參數就要放在請求的url中,@RequestBody修飾的就要放在提交對象中
  •   當參數比較復雜時,feign即使聲明為get請求也會強行使用post請求

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

洪洞县| 肇庆市| 牡丹江市| 长葛市| 邛崃市| 育儿| 通城县| 亳州市| 靖远县| 长岛县| 白玉县| 萍乡市| 隆昌县| 阿勒泰市| 靖安县| 柳州市| 晋城| 遂川县| 荥阳市| 名山县| 泸定县| 西畴县| 博湖县| 三江| 乳源| 资中县| 沙洋县| 平阳县| 祁门县| 崇文区| 和硕县| 博罗县| 陈巴尔虎旗| 成武县| 山阴县| 平安县| 黄石市| 榆中县| 桑植县| 乌鲁木齐市| 西平县|