服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|JavaScript|易语言|

服务器之家 - 编程语言 - Java教程 - 详解feign调用session丢失解决方案

详解feign调用session丢失解决方案

2021-07-16 15:00zl1zl2zl3 Java教程

这篇文章主要介绍了详解feign调用session丢失解决方案,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

最近在做项目的时候发现,微服务使用feign相互之间调用时,存在session丢失的问题。例如,使用feign调用某个远程api,这个远程api需要传递一个鉴权信息,我们可以把cookie里面的session信息放到header里面,这个header是动态的,跟你的httprequest相关,我们选择编写一个拦截器来实现header的传递,也就是需要实现requestinterceptor接口,具体代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
@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熔断策略时,出现了一个新的问题:

?
1
requestattributes requestattributes = requestcontextholder.getrequestattributes();

此时requestattributes会返回null,从而无法传递session信息,最终发现requestcontextholder.getrequestattributes(),该方法是从threadlocal变量里面取得对应信息的,这就找到问题原因了,是由于hystrix熔断机制导致的。 
hystrix有2个隔离策略:thread以及semaphore,当隔离策略为 thread 时,是没办法拿到 threadlocal 中的值的。

因此有两种解决方案:

方案一:调整格隔离策略:

?
1
hystrix.command.default.execution.isolation.strategy: semaphore

这样配置后,feign可以正常工作。

但该方案不是特别好。原因是hystrix官方强烈建议使用thread作为隔离策略! 可以参考官方文档说明。

方案二:自定义策略

记得之前在研究zipkin日志追踪的时候,看到过sleuth有自己的熔断机制,用来在thread之间传递trace信息,sleuth是可以拿到自己上下文信息的,查看源码找到了 
org.springframework.cloud.sleuth.instrument.hystrix.sleuthhystrixconcurrencystrategy 
这个类,查看sleuthhystrixconcurrencystrategy的源码,继承了hystrixconcurrencystrategy,用来实现了自己的并发策略。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
 * 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" rel="external nofollow" >https://github.com/netflix/hystrix/wiki/plugins</a>.
 */
public abstract class hystrixconcurrencystrategy

搜索发现有好几个地方继承了hystrixconcurrencystrategy类 

详解feign调用session丢失解决方案

其中就有我们熟悉的spring security和刚才提到的sleuth都是使用了自定义的策略,同时由于hystrix只允许有一个并发策略,因此为了不影响spring security和sleuth,我们可以参考他们的策略实现自己的策略,大致思路: 

将现有的并发策略作为新并发策略的成员变量; 

在新并发策略中,返回现有并发策略的线程池、queue; 

代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
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中

?
1
2
3
4
@bean
public feignhystrixconcurrencystrategy feignhystrixconcurrencystrategy() {
 return new feignhystrixconcurrencystrategy();
}

至此,结合feignclientsconfigurationcustom配置feign调用session丢失的问题完美解决。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。 

原文链接:https://blog.csdn.net/zl1zl2zl3/article/details/79084368

延伸 · 阅读

精彩推荐
  • Java教程Java关于远程调试程序教程(以Eclipse为例)

    Java关于远程调试程序教程(以Eclipse为例)

    这篇文章主要介绍了Java关于远程调试程序教程(以Eclipse为例),小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧...

    leodaxin11422021-05-11
  • Java教程AspectJ的基本用法

    AspectJ的基本用法

    本文主要介绍了AspectJ的基本用法。具有很好的参考价值。下面跟着小编一起来看下吧...

    Vonnie_Jade2892020-09-07
  • Java教程java 对象数组排序

    java 对象数组排序

    当遇到数组排序时,我们经常会使用学过的几种排序方法,而java 本身提供了Arrays.sort,在数据元素较少或者对效率要求不是抬高时,直接使用Arrays.sort来的更...

    hebedich4962019-12-17
  • Java教程java定义数组的三种类型总结

    java定义数组的三种类型总结

    下面小编就为大家带来一篇java定义数组的三种类型总结。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧 ...

    java教程网1992020-06-20
  • Java教程Struts2学习手册之文件上传基础教程

    Struts2学习手册之文件上传基础教程

    Struts2提供的文件上传下载机制十分简便,使得我们写很少的代码,下面这篇文章主要给大家介绍了关于Struts2学习手册之文件上传的相关资料,文中通过示...

    果冻想9372021-04-25
  • Java教程Java Socket实现的传输对象功能示例

    Java Socket实现的传输对象功能示例

    这篇文章主要介绍了Java Socket实现的传输对象功能,结合具体实例形式分析了java socket传输对象的原理及接口、客户端、服务器端相关实现技巧,需要的朋友可...

    kongxx3032020-11-22
  • Java教程Spring Boot报错:No session repository could be auto-configured, check your configuration的解决方法

    Spring Boot报错:No session repository could be auto-configured, check your co

    这篇文章主要给大家介绍了关于Spring Boot报错:No session repository could be auto-configured, check your configuration的解决方法,文中给出了详细的解决方法,对遇到这...

    bladestone8962020-11-28
  • Java教程Spring 数据库连接池(JDBC)详解

    Spring 数据库连接池(JDBC)详解

    本篇文章主要介绍了基于Spring的JDBC基本框架搭建;基于Spring的JDBC增删改查;读取配置文件中的数据等,具有很好的参考价值。下面跟着小编一起来看下吧...

    五月的仓颉3132020-09-22