今天用 Spring cloud 写了一个电商项目的 demo,在服务消费方启动时,遇到了一个异常:Bean method 'feignContext' not loaded because @ConditionalOnClass did not find required class 'feign.Feign'。本文总结这个异常的解决办法。
完整异常如下:
***************************
APPLICATION FAILED TO START
***************************
Description:
A component required a bean of type 'org.springframework.cloud.netflix.feign.FeignContext' that could not be found.
– Bean method 'feignContext' not loaded because @ConditionalOnClass did not find required class 'feign.Feign'
根据这个异常提示,我们可以得知,在执行 feignContext 方法时,用到了条件判断注解 @ConditionalOnClass。@ConditionalOnClass 注解会判断某个 class 已经成功加载,才会实例化这个 Bean。现在抛出 did not find required class ,说明我们缺少对应的 jar 文件。
因为我们服务消费方使用了 @FeignClient 注解,代码如下:
@FeignClient(name = "order-cloud") public interface OrderService { @RequestMapping("/order/detail") String getOrder(); }
但是实际的 pom.xml 文件中,并没有引入对应的 starter。因此我们需要在 pom.xml 中做如下配置:
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-eureka</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-feign</artifactId> </dependency>
注意,只配置 spring-cloud-starter-eureka 就会报这个异常。另外,启动类上需要加上 @EnableFeignClients 注解,要不然 @FeignClient 注解不会起作用的。
: » Bean method ‘feignContext’ not loaded because @ConditionalOnClass did not find required class ‘feign.Feign’
原创文章,作者:3628473679,如若转载,请注明出处:https://blog.ytso.com/251818.html