我的项目依赖于spring-boot-starter-cloud-connectors和spring-cloud-localconfig-connector。这是我的代码:
@Configuration
class MyConfig {
@Bean
public CloudFactory cloudFactory() {
CloudFactory cf = new CloudFactory();
cf.registerCloudConnector(new LocalConfigConnector());
return cf;
}
}
@Component
class MyComponent {
@Autowired
CloudFactory cf;
@EventListener(value = ApplicationStartedEvent.class)
public void postConstruct() {
Cloud cloud = cf.getCloud();
}
}
当我尝试在本地运行上述代码时,出现异常:
org.springframework.cloud.CloudException:找不到合适的云连接器
虽然,父母的版本无关紧要,但我正在使用2.1.8.RELEASE.
有人能指出上面的代码有什么问题吗?
森栏
相关分类