- I am using spring boot 2.1.9 version trying to migrate my project from
spring boot1.x to 2.x.
- I am getting following exception while running the application. I have added following dependency to fix the issue
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cloud-connectors</artifactId>
</dependency>
@Configuration
public class CloudConfiguration {
private Logger logger = LoggerFactory.getLogger(CloudConfiguration.class);
private static final String CLOUD_PROP_NOT_FOUND = "Warning: Cloud properties are not loaded! ";
@Bean(name="cloudFactoryProperties")
public Properties loadCloudProperties() {
Properties props = null;//new Properties();
try {
props = factory().getCloud().getCloudProperties();//getting exception here
logger.info("Cloud properties : {}", props);
} catch (Exception e) {
logger.error("Exception while try to load the cloud properties");
}
if (props == null) {
//logger.warn(CLOUD_PROP_NOT_FOUND);
}
return props;
}
private CloudFactory factory(){
return new CloudFactory();
}
@Bean
public RestTemplate restTemplate() {
return new RestTemplate();
}
}
I am getting this exception.
org.springframework.cloud.CloudException: No suitable cloud
connector found at org.springframework.cloud.CloudFactory.getCloud(CloudFactory.java:55)