解决Spring Cloud Feign 请求时附带请求头的问题

时间:2021-05-19

问题描述

Feign 在请求时是不会将 request 的请求头带着请求的,导致假如 Feign 调用的接口需要请求头的信息,比如当前用户的 token 之类的就获取不到

解决方案 FeignConfiguration

通过实现 Feign 的 RequestInterceptor 将从上下文中获取到的请求头信息循环设置到 Feign 请求头中。

/** * feign 配置文件 * 将请求头中的参数,全部作为 feign 请求头参数传递 * @author: linjinp * @create: 2020-06-28 09:54 **/@Configurationpublic 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 请求时附带请求头的问题的文章就介绍到这了,更多相关Spring Cloud Feign 请求头内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章