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

溫馨提示×

溫馨提示×

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

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

SpringCloud?Feign請求添加headers怎么實現

發布時間:2023-04-28 16:54:38 來源:億速云 閱讀:114 作者:iii 欄目:開發技術

本篇內容介紹了“SpringCloud Feign請求添加headers怎么實現”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

方案一

方法上的@RequestMapping注解添加headers信息

@RequestMapping注解的屬性中包含一個headers數組,所以嘗試使用,在指定的方法上@RequestMapping注解中添加需要的headers,可以是寫死的,也可以讀取配置,測試是有效的

同理@RequestMapping一組的@PostMapping,@GetMapping注解等均適用

@FeignClient(name = "server",url = "127.0.0.1:8080")
public interface FeignTest {
    @RequestMapping(value = "/test",headers = {"app=test-app","token=${test-app.token}"})
    String test();
}

方案二

接口上的@RequestMapping注解添加headers信息

針對單個方法可以在方法上的@RequestMapping注解中添加headers,如果同一個接口中所有的方法都需要同樣的headers時在方法上加就比較繁瑣了,可以在接口上的@RequestMapping注解中添加headers,使整個接口的方法均被添加同樣的headers

@FeignClient(name = "server",url = "127.0.0.1:8080")
@RequestMapping(value = "/",headers = {"app=test-app","token=${test-app.token}"})
public interface FeignTest {
    @RequestMapping(value = "/test")
    String test();
}

方案三

使用@Headers注解添加headers信息

@FeignClient(name = "server",url = "127.0.0.1:8080")
@Headers({"app: test-app","token: ${test-app.token}"})
public interface FeignTest {
    @RequestMapping(value = "/test")
    String test();
}

查看openfeign官方文檔發現其使用的是@Headers來添加headers,測試發現并沒有生效,spring cloud使用了自己的SpringMvcContract來解析注解,所以需要自己實現一個Contract來實現對@Headers注解的支持,具體實現參照http://www.neiyidaogou.com/article/282530.htm

方案四

自定義RequestInterceptor添加headers信息

feign提供了一個攔截器接口RequestInterceptor,實現RequestInterceptor接口就可以實現對feign請求的攔截,接口提供了一個方法apply(),實現apply()方法

@Component
public class FeignRequestInterceptor implements RequestInterceptor {

    @Value("${test-app.token}")
    private String token;
    
    @Override
    public void apply(RequestTemplate requestTemplate) {
        requestTemplate.header("app","test-app");//靜態
        requestTemplate.header("token",token);//讀配置
    }
}

實現apply()方法直接添加header會攔截所有的請求都加上headers,如果不是所有的feign請求都需要用到不建議此方法

方案五

自定義RequestInterceptor實現添加動態數據到header

以上方案都不適合把動態的數據放入headers中,而通常場景下可能經常需要把計算的簽名,用戶id等動態信息設置到headers,所以還需要一個更加完善的方案。

方案1/2/3均不能設置動態的值,方案4可以設置動態值,但是沒做到請求的區分,所以在方案4的基礎上進行改進得到了較為完善的方案5。

具體實現如下:

在請求調用代碼中,獲取到HttpServletRequest對象,將需要添加到headers中的值封裝成一個map后放入HttpServletRequest的attribute域中

ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
HttpServletRequest request = Objects.requireNonNull(attributes).getRequest();
String signedMsg = getSignedMsg(reqJson); // 計算簽名字符串
Map<String, String> reqMap = new HashMap<>();
reqMap.put("content-type", "application/json");//常量字段
reqMap.put("accessKey", accessKey);//常量字段
reqMap.put("signedMsg", signedMsg);//動態計算/獲取字段
request.setAttribute("customizedRequestHeader", reqMap);

在自定義RequestInterceptor中獲取到HttpServletRequest對象的attribute域中指定的key,將key對應map中的所有參數加入到headers。

@Component
public class FeignRequestInterceptor implements RequestInterceptor {

    @Override
    public void apply(RequestTemplate requestTemplate) {
        ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
        HttpServletRequest request = attributes.getRequest();

        // 設置自定義header
        // 設置request中的attribute到header以便轉發到Feign調用的服務
        Enumeration<String> reqAttrbuteNames = request.getAttributeNames();
        if (reqAttrbuteNames != null) {
            while (reqAttrbuteNames.hasMoreElements()) {
                String attrName = reqAttrbuteNames.nextElement();
                if (!"customizedRequestHeader".equalsIgnoreCase(attrName)) {
                    continue;
                }
                Map<String,String> requestHeaderMap = (Map)request.getAttribute(attrName);
                for (Map.Entry<String, String> entry : requestHeaderMap.entrySet()) {
                    requestTemplate.header(entry.getKey(), entry.getValue());
                }
                break;
            }
        }
    }
}

“SpringCloud Feign請求添加headers怎么實現”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

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

AI

临泽县| 忻州市| 宁强县| 大新县| 增城市| 新巴尔虎右旗| 伊宁市| 眉山市| 樟树市| 隆安县| 霍城县| 伊吾县| 丁青县| 盐边县| 珠海市| 民县| 安阳市| 黄浦区| 新和县| 昭平县| 巴东县| 醴陵市| 琼中| 博白县| 临猗县| 蓬安县| 方山县| 唐河县| 彰化县| 南昌县| 称多县| 菏泽市| 昆明市| 积石山| 台中县| 通州区| 化州市| 塔河县| 巴青县| 桑植县| 江达县|