赞
踩
带你有序的阅读和学习!
这是在使用Feign调服务的时候,报的一个错误,完整错误如下:
No Feign Client for loadBalancing defined.
Did you forget to include spring-cloud-starter-netflix-ribbon?
从错误中看到,说的是我们是不是忘记引入spring-cloud-starter-netflix-ribbon
包了,但是我自己查看之后,发现这个包是存在。于是开启了面向度娘编程
, 哈哈。 网上说有可能是因为没有引入eureka
包,但是,很显然我们使用的是alibaba系列,于是就想到了eureka的作用,所以是因为没有导入服务注册中心
的包和配置。
于是添加配置就可以了:
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-alibaba-nacos-discovery</artifactId>
<version>2.1.0.RELEASE</version>
</dependency>
配置文件:
spring.cloud.nacos.discovery.server-addr=120.79.167.88:8848
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。