
spring cloud
文章平均质量分 51
疯狂打码中~
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
The bean ‘XXXservice‘ could not be injected as a ‘XXXservice‘ because it is a JDK dynamic proxy
The bean 'XXXservice' could not be injected as a 'XXXservice' because it is a JDK dynamic proxy that implements: Action:Consider injecting the bean as one of its interfaces or forcing the use of CGLib-based proxies by setting proxyTargetClass=true on @Enab原创 2022-07-03 18:10:25 · 1799 阅读 · 0 评论 -
Spring cloud + Nacos作为注册中心,自定义Ribbon出现的服务乱调用问题,我想调用ServiceA,但是调用到ServiceB
问题描述:自己写了一个按照版本和权重进行负载均衡的路由器,继承 AbstractLoadBalancerRule,写完收工注入到容器中 @Bean public IRule ruleConfig() { return new ConsumerLoadBalanceRule(); } 这时候本地调试没有问题,开发环境也没有问题,到了测试环境出现一会调用正常,然后某个接口可能出现404,之前接口都是正常的。日志如下 2022-05-22 03:44:52,465原创 2022-05-22 16:20:15 · 634 阅读 · 1 评论