91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Spring Cloud Feign 請求時附帶請求頭怎么解決

發布時間:2020-10-27 19:42:35 來源:億速云 閱讀:845 作者:Leah 欄目:開發技術

今天就跟大家聊聊有關Spring Cloud Feign 請求時附帶請求頭怎么解決,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

解決方案 FeignConfiguration

通過實現 Feign 的 RequestInterceptor 將從上下文中獲取到的請求頭信息循環設置到 Feign 請求頭中。

/**
 * feign 配置文件
 * 將請求頭中的參數,全部作為 feign 請求頭參數傳遞
 * @author: linjinp
 * @create: 2020-06-28 09:54
 **/
@Configuration
public class FeignConfiguration implements RequestInterceptor {
  @Override
  public void apply(RequestTemplate requestTemplate) {
    HttpServletRequest request = SpringContextUtils.getHttpServletRequest();
    Enumeration<String> headerNames = request.getHeaderNames();
    if (headerNames != null) {
      while (headerNames.hasMoreElements()) {
        String name = headerNames.nextElement();
        String values = request.getHeader(name);
        requestTemplate.header(name, values);
      }
    }
  }
}

使用

通過 configuration = FeignConfiguration.class 指定這次 Feign 請求走哪種配置

@FeignClient(name = "admin", contextId = "factoryPlmseriesRelation", configuration = FeignConfiguration.class)
//@FeignClient(name = "admin2", contextId = "factoryPlmseriesRelation", url = "http://127.0.0.1:8582/", configuration = FeignConfiguration.class)
public interface FeignFactoryPlmseriesRelationService {

  /**
   * 根據當前用戶,獲取工廠與PLM關聯關系
   * @return
   */
  @GetMapping(value = "/factoryPlmseriesRelation/getFactoryPlmseriesRelation")
  ErrorMsg<List<FactoryPlmseriesRelationVo>> getFactoryPlmseriesRelation();

}

配置修改

主要是 hystrix.command.default.execution.isolation 后面的配置,需要將 hystrix 配置為信號量模式,否則會出現由于隔離策略導致獲取不到請求頭

# ribbon 配置
ribbon:
 OkToRetryOnAllOperations: false #對所有操作請求都進行重試,默認false
 ReadTimeout: 5000  #負載均衡超時時間,默認值5000
 ConnectTimeout: 5000 #ribbon請求連接的超時時間,默認值2000
 MaxAutoRetries: 0   #對當前實例的重試次數,默認0
 MaxAutoRetriesNextServer: 1 #對切換實例的重試次數,默認1
# hystrix 配置
hystrix:
 command:
  default: #default全局有效,service id指定應用有效
   execution:
    timeout:
     #是否開啟超時熔斷
     enabled: true
    isolation:
     thread:
      timeoutInMilliseconds: 10000 #斷路器超時時間,默認1000ms
     # hystrix 隔離模式改為信號量模式,feign 才能獲取到父線程中的請求頭
     strategy: SEMAPHORE
     # 允許的并發量,默認值為 10
     semaphore:
      maxConcurrentRequests: 100

看完上述內容,你們對Spring Cloud Feign 請求時附帶請求頭怎么解決有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

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

AI

萍乡市| 武隆县| 仙居县| 华蓥市| 夏河县| 奈曼旗| 嘉荫县| 龙泉市| 铅山县| 双流县| 台中市| 甘泉县| 临泉县| 长治市| 团风县| 靖安县| 方正县| 陕西省| 桐庐县| 公安县| 攀枝花市| 太仓市| 石渠县| 赤水市| 开化县| 平和县| 淮滨县| 仁寿县| 防城港市| 华阴市| 江津市| 丽江市| 通城县| 盘山县| 汽车| 谷城县| 武安市| 通渭县| 恩平市| 舞钢市| 吉安市|