
SpringCloud
基于springcloud构建微服务工程
辛丑年正月十五
这个作者很懒,什么都没留下…
展开
-
使用OpenFeign调用服务报错503[Load balancer does not contain an instance for the service ...]
Caused by: feign.FeignException$ServiceUnavailable: [503] during [GET] to [http://sundial-user-provider/user/getByLoginName/%E6%98%8E] [IUserFacede#getByLoginName(String)]: [Load balancer does not contain an instance for the service sundial-user-provider]原创 2023-04-20 10:50:32 · 12210 阅读 · 0 评论 -
SpringCloud中Gateway与SpringBoot Web jar包冲突问题,不用删除webjar包解决方案
这两天构建SpringCloud网关时发现gateway和springboot的web jar包起冲突。网上查阅了很多资料,全部都是说gateway是基于netty和webflux的 所以会和web jar起冲突,解决方式为删除web。。。我的解决方式:添加下面的代码到webjar中即可<scope>provided</scope>解释:provide...原创 2019-12-13 14:48:57 · 6405 阅读 · 8 评论