码上敲享录 > springcloud开发经验分享 > A component required a bean of type 'com.netflix.client.config.IClientConfig' that could not be foun

A component required a bean of type 'com.netflix.client.config.IClientConfig' that could not be foun

上一章章节目录下一章 2020-06-22已有5197人阅读 评论(0)

A component required a bean of type 'com.netflix.client.config.IClientConfig' that could not be found


解决方法:

如果ribbon策略配置类放在主程序SpringBootApplication同包目录下会发生未知异常,这是由于Spring boot的主程序会去扫描同一个层级目录下的文件,这里有两种办法可以解决。


第一种:不将自定义配置类放在主程序同包或者其子包中。

第二种可以添加一些注解避免主程序扫描到自定义配置类,例如在主程序SpringBootApplication加上

@ComponentScan(basePackages = { "xxx.yyy"})


0

有建议,请留言!

  • *您的姓名:

  • *所在城市:

  • *您的联系电话:

    *您的QQ:

  • 咨询问题:

  • 提 交