解决SpringCloud客户端启动报错:“Field XXX required a bean of type XXX that could not be found”

1、目的

为了实现接口与实现分离,为服务system-server抽出了一个接口模块system-api
消费端调用服务时不必另外写接口,可统一由服务端打包,提供给消费端引用。

服务端

在这里插入图片描述

消费端

在这里插入图片描述

服务端api

在这里插入图片描述

2、问题

在消费端引入system-api后,消费端启动报错:

2020-03-03 15:57:23.341 ERROR [cloud-client,,,] 19740 --- [           main] o.s.b.d.LoggingFailureAnalysisReporter   : 

***************************
APPLICATION FAILED TO START
***************************

Description:

Field userService in com.spring.cloud.controller.ClientController required a bean of type 'com.rock.hhp.system.service.UserService' that could not be found.


Action:

Consider defining a bean of type 'com.rock.hhp.system.service.UserService' in your configuration.

3、解决方式

3.1、在消费端启动类上的@EnableFeignClients需要指定包

包名是api中的接口所在地路径

3.2、在服务端api添加ApiConfig.java

在这里插入图片描述
1、在resources下META-INF文件夹中,添加文件spring.factories,内容如下

org.springframework.boot.autoconfigure.EnableAutoConfiguration=com.rock.hhp.system.config.ApiConfig

2、添加ApiConfig类,代码如下:

/**
 * @author Rock rockhhp@163.com
 * @since 2020-03-03 15:40
 */
@EnableFeignClients({"com.rock.hhp.system.service"})
public class ApiConfig {
}

问题解决,以上

  • 7
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
这个误通常是由于缺少Swagger的相关配置或依赖引起的。为了解决这个问题,你可以尝试以下步骤: 1. 确保已经正确引入了Swagger的相关依赖。在`pom.xml`文件中添加以下依赖: ```xml <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-boot-starter</artifactId> <version>3.0.0</version> </dependency> ``` 2. 确保在Spring Boot的配置类中添加了Swagger的配置类。例如: ```java import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import springfox.documentation.builders.ApiInfoBuilder; import springfox.documentation.builders.PathSelectors; import springfox.documentation.builders.RequestHandlerSelectors; import springfox.documentation.service.ApiInfo; import springfox.documentation.spi.DocumentationType; import springfox.documentation.spring.web.plugins.Docket; @Configuration public class SwaggerConfig { @Bean public Docket api() { return new Docket(DocumentationType.SWAGGER_2) .select() .apis(RequestHandlerSelectors.basePackage("your.package.name")) .paths(PathSelectors.any()) .build() .apiInfo(apiInfo()); } private ApiInfo apiInfo() { return new ApiInfoBuilder() .title("Your API Title") .description("Your API Description") .version("1.0.0") .build(); } } ``` 确保将`your.package.name`替换为你的项目中包含API的实际包路径。 3. 如果你使用了多个Swagger相关的依赖或版本之间有冲突,可以尝试清理和更新你的项目依赖。可以使用`mvn clean`命令清理项目,并使用`mvn install`命令重新安装依赖。 如果上述步骤仍然无法解决问题,请提供更多的误堆栈信息,以便更好地帮助你解决问题。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值