当前位置:   article > 正文

Spring cloud多模块开发下Feign的使用,以及@FeignClient注入bean找不到异常解决_org.springframework.cloud.openfeign.feignclient

org.springframework.cloud.openfeign.feignclient

一、关于Feign

微服务架构开发是,我们常常会在一个项目中调用其他服务,其实使用Spring Cloud Ribbon就能实现这个需求,利用RestTemplate 的请求拦截来实现对依赖服务的接口调用, 但是实际项目中对服务依赖的调用可能不止于 一 处,往往 一 个接口会被多处调用,所以我们通常都会针对各个微服务自行封装 一 些客户端类来包装这些依赖服务的调用。 这个时候我们会发现,由于 RestTemplate 的封装,几乎每 一 个调用都是简单的模板化内容。

Spring Cloud Feign 在此基础上做了进 一 步封装,由它来帮助我们定义和实现依赖服务接口的定义。在 Spring Cloud Feign 的实现下, 我们只需创建 一 个接口并用注解(@FeignClient)的方式来配置它, 即可完成对服务提供方的接口绑定,简化了在使用 Spring Cloud Ribbon 时自行封装服务调用客户端的开发量。 

二、多模块方式构建一个Feign项目

1、准备,

启动一个Eureka服务注册中心,后面的两个服务都会启动注册到这个上面。

2、编写第一服务--商品服务

(1). 创建一个父模块

  File-->New-->Project-->Maven

  不需要任何勾选,直接填写GAV,然后填写项目名就可以了

  因为这是一个父模块,对于创建出来的Maven项目,可以直接删除src文件

(2). 创建子模块common

  在父模块上右键`New`-->`Module`,创建一个模块,该模块即为子模块;

  同样不选择Create from archetype选项,因为是普通模块,Next;

  GroupId       默认父项目的groupId

  Version       默认父项目的version

  ArtifactId    本模块的名字product-common

  然后填写项目名即可common

(3). 同理创建子模块client

  在父模块上右键`New`-->`Module`,创建一个子模块;

  同样不选择Create from archetype选项,因为是普通模块,Next;

  GroupId       默认父项目的groupId

  Version       默认父项目的version

  ArtifactId    本模块的名字product-client

  然后填写项目名即可client

(4). 同理创建子模块server

  在父模块上右键`New`-->`Module`,创建一个子模块;

  同样不选择Create from archetype选项,因为是普通模块,Next;

  GroupId       默认父项目的groupId

  Version       默认父项目的version

  ArtifactId    本模块的名字product-server

  然后填写项目名即可server

(5). 在server模块下编写一个服务接口

  例如提供一个/product/listForOrder这个服务会在下面的订单类中调用

  1. @RestController
  2. @RequestMapping("/product")
  3. public class ProductController {
  4. @Autowired
  5. private ProductService productService;
  6. @PostMapping("/listForOrder")
  7. public List<ProductInfoOutput> listForOrder(@RequestBody List<String> productIdList){
  8.     return productService.findList(productIdList);
  9. }
  10. }

(6). 在client模块下创建一个接口类

在这个接口类上加注解@FeignClient(name = "product"),其中product是配置的服务在注册中心上的名字

  1. import com.yore.product.common.ProductInfoOutput;
  2. import org.springframework.cloud.openfeign.FeignClient;
  3. import org.springframework.web.bind.annotation.PostMapping;
  4. import org.springframework.web.bind.annotation.RequestBody;
  5. import java.util.List;
  6. @FeignClient(name = "product")
  7. public interface ProductClient {
  8.     @PostMapping("/product/listForOrder")
  9.     List<ProductInfoOutput> listForOrder(@RequestBody List<String> productIdList);
  10. }

(7). 接此项目提交到Maven仓库

直接可以使用Idea右侧的Maven Projects里的install,打包提交到Maven仓库,或者使用Maven命令:

mvn -Dmaven.test.skip=true -U clean install

(8). 启动项目,将项目注册到注册中心,


启动成功后会在注册中心的UI上看到服务的注册信息

3、编写第二服务—订单服务

(1). 同第2.2创建商品项目一样,创建一个订单Maven项目

(2). 在项目中把商品类的client依赖引入项目

(3). 在订单项目的Server模块的应用启动类上添加注解

  1. @SpringBootApplication
  2. @EnableDiscoveryClient
  3. @EnableFeignClients(basePackages = "com.yore.product.client")
  4. public class OrderApplication {
  5.     public static void main(String[] args) {
  6.         SpringApplication.run(OrderApplication.class,args);
  7.     }
  8. }

(4). 在Server模块调用商品服务

这里比如在服务层调用,只需要在该类把订单类提供的ProductClient接口自动注解进来,就可以使用商品类向外提供的接口服务

三、项目引入的依赖

Spring Cloud确实开发更加方便了,Spring Cloud版本更新也很快,但是头疼的就是个个版本的兼容性就是很不方便的地方,经常因为版本问题会调入坑里不能自拔,所以如果有时排查后确定不是项目代码问题时,实在没有办法时还是降到稳定版本吧。

1、商品类引用的依赖

父pom文件

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.yore</groupId>
  7. <artifactId>product</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <modules>
  10. <module>common</module>
  11. <module>client</module>
  12. <module>server</module>
  13. </modules>
  14. <packaging>pom</packaging>
  15. <name>product</name>
  16. <parent>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-parent</artifactId>
  19. <version>2.0.4.RELEASE</version>
  20. <relativePath/>
  21. </parent>
  22. <properties>
  23. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  24. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  25. <java.version>1.8</java.version>
  26. <spring-cloud.version>Finchley.M9</spring-cloud.version>
  27. <product-common.version>0.0.1-SNAPSHOT</product-common.version>
  28. </properties>
  29. <!-- 依赖的版本管理 -->
  30. <dependencyManagement>
  31. <dependencies>
  32. <dependency>
  33. <groupId>org.springframework.cloud</groupId>
  34. <artifactId>spring-cloud-dependencies</artifactId>
  35. <version>${spring-cloud.version}</version>
  36. <type>pom</type>
  37. <scope>import</scope>
  38. </dependency>
  39. <!-- 项目中引用common -->
  40. <dependency>
  41. <groupId>com.yore</groupId>
  42. <artifactId>product-common</artifactId>
  43. <version>${product-common.version}</version>
  44. </dependency>
  45. </dependencies>
  46. </dependencyManagement>
  47. </project>

client模块Pom文件

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>product</artifactId>
  7. <groupId>com.yore</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>product-client</artifactId>
  12. <dependencies>
  13. <!-- 项目中用到了Feign注解,引入此包 -->
  14. <dependency>
  15. <groupId>org.springframework.cloud</groupId>
  16. <artifactId>spring-cloud-starter-openfeign</artifactId>
  17. </dependency>
  18. <!-- 项目中用到了PostMapping,引入此包 -->
  19. <dependency>
  20. <groupId>org.springframework</groupId>
  21. <artifactId>spring-web</artifactId>
  22. </dependency>
  23. </dependencies>
  24. </project>

service模块Pom文件

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>product</artifactId>
  7. <groupId>com.yore</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>product-server</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.cloud</groupId>
  15. <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-test</artifactId>
  20. <scope>test</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-data-jpa</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>mysql</groupId>
  28. <artifactId>mysql-connector-java</artifactId>
  29. </dependency>
  30. </dependencies>
  31. <build>
  32. <plugins>
  33. <plugin>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-maven-plugin</artifactId>
  36. </plugin>
  37. </plugins>
  38. </build>
  39. </project>

2、订单类引用的依赖

父Pom文件

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.yore</groupId>
  7. <artifactId>order</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <modules>
  10. <module>client</module>
  11. <module>common</module>
  12. <module>server</module>
  13. </modules>
  14. <packaging>pom</packaging>
  15. <name>order</name>
  16. <parent>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-parent</artifactId>
  19. <version>2.0.4.RELEASE</version>
  20. <relativePath/>
  21. </parent>
  22. <properties>
  23. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  24. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  25. <java.version>1.8</java.version>
  26. <spring-cloud.version>Finchley.M9</spring-cloud.version>
  27. <product-client.version>0.0.1-SNAPSHOT</product-client.version>
  28. </properties>
  29. <dependencyManagement>
  30. <dependencies>
  31. <dependency>
  32. <groupId>org.springframework.cloud</groupId>
  33. <artifactId>spring-cloud-dependencies</artifactId>
  34. <version>${spring-cloud.version}</version>
  35. <type>pom</type>
  36. <scope>import</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.yore</groupId>
  40. <artifactId>product-client</artifactId>
  41. <version>${product-client.version}</version>
  42. </dependency>
  43. </dependencies>
  44. </dependencyManagement>
  45. <repositories>
  46. <repository>
  47. <id>spring-snapshots</id>
  48. <name>Spring Snapshots</name>
  49. <url>https://repo.spring.io/snapshot</url>
  50. <snapshots>
  51. <enabled>true</enabled>
  52. </snapshots>
  53. </repository>
  54. <repository>
  55. <id>spring-milestones</id>
  56. <name>Spring Milestones</name>
  57. <url>https://repo.spring.io/milestone</url>
  58. <snapshots>
  59. <enabled>false</enabled>
  60. </snapshots>
  61. </repository>
  62. </repositories>
  63. <pluginRepositories>
  64. <pluginRepository>
  65. <id>spring-snapshots</id>
  66. <name>Spring Snapshots</name>
  67. <url>https://repo.spring.io/snapshot</url>
  68. <snapshots>
  69. <enabled>true</enabled>
  70. </snapshots>
  71. </pluginRepository>
  72. <pluginRepository>
  73. <id>spring-milestones</id>
  74. <name>Spring Milestones</name>
  75. <url>https://repo.spring.io/milestone</url>
  76. <snapshots>
  77. <enabled>false</enabled>
  78. </snapshots>
  79. </pluginRepository>
  80. </pluginRepositories>
  81. </project>

server模块Pom文件

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>order</artifactId>
  7. <groupId>com.yore</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>order-server</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.cloud</groupId>
  15. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework.cloud</groupId>
  19. <artifactId>spring-cloud-starter-openfeign</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.cloud</groupId>
  23. <artifactId>spring-cloud-context</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-web</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-test</artifactId>
  32. <scope>test</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-data-jpa</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>mysql</groupId>
  40. <artifactId>mysql-connector-java</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.yore</groupId>
  44. <artifactId>product-client</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.yore</groupId>
  48. <artifactId>order-common</artifactId>
  49. </dependency>
  50. </dependencies>
  51. <build>
  52. <plugins>
  53. <plugin>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-maven-plugin</artifactId>
  56. </plugin>
  57. </plugins>
  58. </build>
  59. </project>

四、问题

1、LoadBalancedRetryFactory类无法加载的异常

  1. java.lang.IllegalStateException: Failed to introspect Class [org.springframework.cloud.openfeign.ribbon.FeignRibbonClientAutoConfiguration] from ClassLoader
  2. Caused by: java.lang.NoClassDefFoundError: org/springframework/cloud/client/loadbalancer/LoadBalancedRetryFactory

这个是某些Spring Cloud非正式版本会出现的问题,有些人使用是可能不会出现这个问题,有时运气不好时就会包这个问题,出现这个问题就不要瞎折腾了,直接更换成稳定正式版的吧,可以参考上面引入的版本,Reimport一下

2、提供的某些Fegin服务无法找到

  1. Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
  2. 2018-08-19 21:28:20.526 ERROR 20068 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter :
  3. ***************************
  4. APPLICATION FAILED TO START
  5. ***************************
  6. Description:
  7. Field productClient in com.yore.order.service.impl.OrderServiceImpl required a bean of type 'com.yore.product.client.ProductClient' that could not be found.
  8. Action:
  9. Consider defining a bean of type 'com.yore.product.client.ProductClient' in your configuration.

出现这个问题,首先要确定在启动类上是否添加了@EnableFeignClients注解,并且需要配置上Feign客户端接口的包basePackages = "com.yore.product.client",

@EnableFeignClients(basePackages = "com.yore.product.client")

然后确定这两个服务引用的Spring Cloud和Spring Boot版本是否一致,有时因为不一致,在 第一个服务中注解可能引用的是org.springframework.cloud.netflix.feign.FeignClient这个包下的,另一个服务中引用的是org.springframework.cloud.openfeign.FeignClient包下的,这时也会包这个错误,

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/84654
推荐阅读
相关标签
  

闽ICP备14008679号