I\'m having the following configuration where I have two Spring beans with the same name from two different configuration classes.
import org.springframework.con
You need to name that beans so:
@Configuration
public class RestTemplateConfiguration {
@Bean(name="bean1")
public RestTemplate restTemplate() {
return new RestTemplate();
}
}
And
@Configuration
public class OtherRestTemplateConfiguration {
@Bean(name="bean2")
public RestTemplate restTemplate() {
return new RestTemplate();
}
}