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"})