Net Core教程

springcloud整合nacos启动时报错‘com.netflix.client.config.IClientConfig‘ that could not be found

本文主要是介绍springcloud整合nacos启动时报错‘com.netflix.client.config.IClientConfig‘ that could not be found,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

异常信息

Description:

Parameter 0 of method ribbonServerList in com.alibaba.cloud.nacos.ribbon.NacosRibbonClientConfiguration required a bean of type 'com.netflix.client.config.IClientConfig' that could not be found.


Action:

Consider defining a bean of type 'com.netflix.client.config.IClientConfig' in your configuration.

解决方法
在配置类里装配一个bean

    @Bean
    public IClientConfig iClientConfig() {
        return new DefaultClientConfigImpl();
    }
这篇关于springcloud整合nacos启动时报错‘com.netflix.client.config.IClientConfig‘ that could not be found的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!