springcloud
hexu_blog
全栈工程师,六年工作经验
展开
-
SpringCloudApiGateway之支持Cors跨域请求
只需要在配置gateway项目上添加下面类即可 import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.http.HttpHeaders; import org.sp...原创 2020-04-13 22:20:43 · 602 阅读 · 0 评论 -
cloud微服务之间的调用session共享失效
在微服务开发中,如何让多个微服务之间的session共享,如:登录的账号或其他信息需要保存到session中,但是不使用全局session肯定其他的微服务不能调用 我们的目的:让微服务A保存的sesion在微服务B中也能获取 因为我这里集成了OpenFein,在服务A使用OpenFein调用服务B时发现无法获取session,但是单独去执行服务B方法时又可以获取了,这是因为在连接调用时出现的问...原创 2020-04-11 21:56:22 · 1033 阅读 · 0 评论