欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Spring Boot 2.x 注解@EnableFeignClients无法引入的问题解决方案

程序员文章站 2022-03-20 11:10:49
...

近期学习Spring Cloud时,@EnableFeignClients注解出现无法引入的问题

解决方案为引入下面的包即可

        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-feign</artifactId>
            <version>1.4.7.RELEASE</version>
        </dependency>

使用的Spring Cloud版本是Hoxton.SR6,Spring Boot版本为2.3.1