日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

feign调用session丢失解决方案

發布時間:2025/3/21 编程问答 23 豆豆
生活随笔 收集整理的這篇文章主要介紹了 feign调用session丢失解决方案 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

? ? ? ?最近在做項目的時候發現,微服務使用feign相互之間調用時,存在session丟失的問題。例如,使用Feign調用某個遠程API,這個遠程API需要傳遞一個鑒權信息,我們可以把cookie里面的session信息放到Header里面,這個Header是動態的,跟你的HttpRequest相關,我們選擇編寫一個攔截器來實現Header的傳遞,也就是需要實現RequestInterceptor接口,具體代碼如下:

@Configuration @EnableFeignClients(basePackages = "com.xxx.xxx.client") public class FeignClientsConfigurationCustom implements RequestInterceptor { @Override public void apply(RequestTemplate template) { RequestAttributes requestAttributes = RequestContextHolder.getRequestAttributes(); if (requestAttributes == null) { return; } HttpServletRequest request = ((ServletRequestAttributes) requestAttributes).getRequest(); Enumeration<String> headerNames = request.getHeaderNames(); if (headerNames != null) { while (headerNames.hasMoreElements()) { String name = headerNames.nextElement(); Enumeration<String> values = request.getHeaders(name); while (values.hasMoreElements()) { String value = values.nextElement(); template.header(name, value); } } } } }

經過測試,上面的解決方案可以正常的使用;?

但是,當引入Hystrix熔斷策略時,出現了一個新的問題:

RequestAttributes requestAttributes = RequestContextHolder.getRequestAttributes();

此時requestAttributes會返回null,從而無法傳遞session信息,最終發現RequestContextHolder.getRequestAttributes(),該方法是從ThreadLocal變量里面取得對應信息的,這就找到問題原因了,是由于Hystrix熔斷機制導致的。?
Hystrix有2個隔離策略:THREAD以及SEMAPHORE,當隔離策略為 THREAD 時,是沒辦法拿到 ThreadLocal 中的值的。

因此有兩種解決方案:

方案一:調整格隔離策略:

hystrix.command.default.execution.isolation.strategy: SEMAPHORE

這樣配置后,Feign可以正常工作。

但該方案不是特別好。原因是Hystrix官方強烈建議使用THREAD作為隔離策略! 可以參考官方文檔說明。

方案二:自定義策略

記得之前在研究zipkin日志追蹤的時候,看到過Sleuth有自己的熔斷機制,用來在thread之間傳遞Trace信息,Sleuth是可以拿到自己上下文信息的,查看源碼找到了?
org.springframework.cloud.sleuth.instrument.hystrix.SleuthHystrixConcurrencyStrategy?
這個類,查看SleuthHystrixConcurrencyStrategy的源碼,繼承了HystrixConcurrencyStrategy,用來實現了自己的并發策略。

/*** Abstract class for defining different behavior or implementations for concurrency related aspects of the system with default implementations.* <p>* For example, every {@link Callable} executed by {@link HystrixCommand} will call {@link #wrapCallable(Callable)} to give a chance for custom implementations to decorate the {@link Callable} with* additional behavior.* <p>* When you implement a concrete {@link HystrixConcurrencyStrategy}, you should make the strategy idempotent w.r.t ThreadLocals.* Since the usage of threads by Hystrix is internal, Hystrix does not attempt to apply the strategy in an idempotent way.* Instead, you should write your strategy to work idempotently. See https://github.com/Netflix/Hystrix/issues/351 for a more detailed discussion.* <p>* See {@link HystrixPlugins} or the Hystrix GitHub Wiki for information on configuring plugins: <a* href="https://github.com/Netflix/Hystrix/wiki/Plugins">https://github.com/Netflix/Hystrix/wiki/Plugins</a>.*/ public abstract class HystrixConcurrencyStrategy

搜索發現有好幾個地方繼承了HystrixConcurrencyStrategy類?

其中就有我們熟悉的Spring Security和剛才提到的Sleuth都是使用了自定義的策略,同時由于Hystrix只允許有一個并發策略,因此為了不影響Spring Security和Sleuth,我們可以參考他們的策略實現自己的策略,大致思路:?
將現有的并發策略作為新并發策略的成員變量;?
在新并發策略中,返回現有并發策略的線程池、Queue;?
代碼如下:

public class FeignHystrixConcurrencyStrategy extends HystrixConcurrencyStrategy { private static final Logger log = LoggerFactory.getLogger(FeignHystrixConcurrencyStrategy.class); private HystrixConcurrencyStrategy delegate; public FeignHystrixConcurrencyStrategy() { try { this.delegate = HystrixPlugins.getInstance().getConcurrencyStrategy(); if (this.delegate instanceof FeignHystrixConcurrencyStrategy) { // Welcome to singleton hell... return; } HystrixCommandExecutionHook commandExecutionHook = HystrixPlugins.getInstance().getCommandExecutionHook(); HystrixEventNotifier eventNotifier = HystrixPlugins.getInstance().getEventNotifier(); HystrixMetricsPublisher metricsPublisher = HystrixPlugins.getInstance().getMetricsPublisher(); HystrixPropertiesStrategy propertiesStrategy = HystrixPlugins.getInstance().getPropertiesStrategy(); this.logCurrentStateOfHystrixPlugins(eventNotifier, metricsPublisher, propertiesStrategy); HystrixPlugins.reset(); HystrixPlugins.getInstance().registerConcurrencyStrategy(this); HystrixPlugins.getInstance().registerCommandExecutionHook(commandExecutionHook); HystrixPlugins.getInstance().registerEventNotifier(eventNotifier); HystrixPlugins.getInstance().registerMetricsPublisher(metricsPublisher); HystrixPlugins.getInstance().registerPropertiesStrategy(propertiesStrategy); } catch (Exception e) { log.error("Failed to register Sleuth Hystrix Concurrency Strategy", e); } } private void logCurrentStateOfHystrixPlugins(HystrixEventNotifier eventNotifier, HystrixMetricsPublisher metricsPublisher, HystrixPropertiesStrategy propertiesStrategy) { if (log.isDebugEnabled()) { log.debug("Current Hystrix plugins configuration is [" + "concurrencyStrategy [" + this.delegate + "]," + "eventNotifier [" + eventNotifier + "]," + "metricPublisher [" + metricsPublisher + "]," + "propertiesStrategy [" + propertiesStrategy + "]," + "]"); log.debug("Registering Sleuth Hystrix Concurrency Strategy."); } } @Override public <T> Callable<T> wrapCallable(Callable<T> callable) { RequestAttributes requestAttributes = RequestContextHolder.getRequestAttributes(); return new WrappedCallable<>(callable, requestAttributes); } @Override public ThreadPoolExecutor getThreadPool(HystrixThreadPoolKey threadPoolKey, HystrixProperty<Integer> corePoolSize, HystrixProperty<Integer> maximumPoolSize, HystrixProperty<Integer> keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue) { return this.delegate.getThreadPool(threadPoolKey, corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue); } @Override public ThreadPoolExecutor getThreadPool(HystrixThreadPoolKey threadPoolKey, HystrixThreadPoolProperties threadPoolProperties) { return this.delegate.getThreadPool(threadPoolKey, threadPoolProperties); } @Override public BlockingQueue<Runnable> getBlockingQueue(int maxQueueSize) { return this.delegate.getBlockingQueue(maxQueueSize); } @Override public <T> HystrixRequestVariable<T> getRequestVariable(HystrixRequestVariableLifecycle<T> rv) { return this.delegate.getRequestVariable(rv); } static class WrappedCallable<T> implements Callable<T> { private final Callable<T> target; private final RequestAttributes requestAttributes; public WrappedCallable(Callable<T> target, RequestAttributes requestAttributes) { this.target = target; this.requestAttributes = requestAttributes; } @Override public T call() throws Exception { try { RequestContextHolder.setRequestAttributes(requestAttributes); return target.call(); } finally { RequestContextHolder.resetRequestAttributes(); } } } }

最后,將這個策略類作為bean配置到feign的配置類FeignClientsConfigurationCustom

@Beanpublic FeignHystrixConcurrencyStrategy feignHystrixConcurrencyStrategy() {return new FeignHystrixConcurrencyStrategy();}

至此,結合FeignClientsConfigurationCustom配置feign調用session丟失的問題完美解決。

?

總結

以上是生活随笔為你收集整理的feign调用session丢失解决方案的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

主站蜘蛛池模板: 先锋影音av资源网 | 欧美三级免费看 | 亚洲天堂黄 | 国产一线在线观看 | 日本少妇在线观看 | 日韩一区不卡视频 | 亚洲乱码视频在线观看 | 热99这里只有精品 | 永久av免费| 久久久久久久女国产乱让韩 | 久久性网 | 无码免费一区二区三区免费播放 | 亚洲天堂男人网 | 伊人久久大香线蕉成人综合网 | 亚洲欧美成人一区 | 婷婷午夜影院 | 精品一二三四 | 久久免费大片 | 中国老妇性视频 | 久久鲁视频 | 色屁屁视频 | 国产一区二区三区四区五区六区 | 国产探花一区 | 淫视频在线观看 | 中文字幕无码乱码人妻日韩精品 | 日本精品久久久久久久 | 亚洲久草视频 | 日韩素人| 噼里啪啦免费观看 | 午夜在线精品偷拍 | 少妇第一次交换又紧又爽 | 国产野外作爱视频播放 | 探花视频在线免费观看 | 99国产视频在线 | 51妺嘿嘿午夜福利 | 波多野结衣加勒比 | 久久影院午夜理论片无码 | 麻豆中文字幕 | 亚洲精品久久久久久国产精华液 | 亚洲射色| 全部孕妇毛片 | 五月婷婷社区 | 毛片毛片毛片毛片毛片毛片毛片毛片毛片毛片 | 夜夜嗨av一区二区三区网页 | 日韩欧美一级在线 | 日批毛片 | 亚洲av成人精品毛片 | 人妻少妇精品一区二区三区 | 最近最新mv字幕观看 | va在线 | 一区二区三区免费观看视频 | 香蕉视频国产在线观看 | 欧美日本一二三区 | 免费国产在线视频 | 伊人久久综合影院 | 97久久综合 | 一本一道久久综合狠狠老精东影业 | 少妇一区二区三区 | 日本特级黄色录像 | 成人a视频在线观看 | 国产偷亚洲偷欧美偷精品 | 欧美日韩一区二区三区不卡视频 | 丰满人妻一区二区三区在线 | 日韩av综合 | 午夜黄色小视频 | 免费观看一区二区三区视频 | 国产一区二区播放 | 欧美日韩一区三区 | 99久久网站 | a级黄色在线观看 | 国产精品视频福利 | 久草午夜| 可以免费看av的网站 | 一区二区激情视频 | 亚洲一区在线视频 | 末发成年娇小性xxxxx | 韩国伦理电影免费在线 | 欧美图片一区二区 | 精品999www| 国产成人av一区二区三区 | 国产精品呻吟久久 | 国产浮力影院 | 亚洲成人高清在线 | 日韩中文电影 | jizz欧美大片 | 黑人爱爱视频 | 91av观看| 丁香综合网 | 日韩精品无码一本二本三本色 | 男人日女人b视频 | 日韩中文av在线 | 国内精品在线播放 | 国产成人a∨ | 麻豆黄色一级片 | 欧美性猛交xxx乱久交 | 中文字幕999 | 成年人看片网站 | 免费精品无码AV片在线观看黄 | 国产欧美一区二区三区四区 |