微服務經過feign.RequestInterceptor傳遞參數

Feign 支持請求攔截器,在發送請求前,能夠對發送的模板進行操做,例如設置請求頭等屬性,自定請求攔截器須要實現 feign.RequestInterceptor 接口,該接口的方法 apply 有參數 template ,該參數類型爲 RequestTemplate,咱們能夠根據實際狀況對請求信息進行調整,示例以下:java

  • 建立自定義請求攔截器,在發送請求前增長了一個請求頭信息,進行身份校驗。app

具體代碼參考以下:微服務

import feign.RequestInterceptor;

import feign.RequestTemplate;

   

public class MyRequestInterceptor implements RequestInterceptor{

   

public void apply(RequestTemplatetemplate){

template.header("Authorization","123");

}

}

 服務端能夠經過HttpServletRequest獲取到前面傳遞的參數,具體獲取邏輯以下:blog

 RequestAttributes requestAttributes = RequestContextHolder.currentRequestAttributes();
        if (requestAttributes != null) {
            HttpServletRequest request = ((ServletRequestAttributes) requestAttributes).getRequest();
            request.getHeader("Authorization");
        }

 就實現了各個微服務之間參數的傳遞。 接口

相關文章
相關標籤/搜索