set a default bean for RestTemplate 92/83492/1
authorBenjamin, Max (mb388a) <mb388a@us.att.com>
Wed, 27 Mar 2019 14:11:06 +0000 (10:11 -0400)
committerBenjamin, Max (mb388a) <mb388a@us.att.com>
Wed, 27 Mar 2019 14:11:06 +0000 (10:11 -0400)
Change-Id: Ie32f5425d44f05fb5aa87e737aeabb393c978643
Issue-ID: SO-1706
Signed-off-by: Benjamin, Max (mb388a) <mb388a@us.att.com>
common/src/main/java/org/onap/so/client/RestTemplateConfig.java

index 34ad6ef..0633ae7 100644 (file)
@@ -26,6 +26,7 @@ import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.beans.factory.annotation.Qualifier;
 import org.springframework.context.annotation.Bean;
 import org.springframework.context.annotation.Configuration;
+import org.springframework.context.annotation.Primary;
 import org.springframework.http.client.BufferingClientHttpRequestFactory;
 import org.springframework.http.client.HttpComponentsClientHttpRequestFactory;
 import org.springframework.web.client.RestTemplate;
@@ -39,6 +40,7 @@ public class RestTemplateConfig {
     private HttpComponentsClientConfiguration httpComponentsClientConfiguration;
 
     @Bean
+    @Primary
     public RestTemplate restTemplate() {
         final RestTemplate restTemplate = new RestTemplate();
         restTemplate