diff options
author | Benjamin, Max (mb388a) <mb388a@us.att.com> | 2019-03-27 10:11:06 -0400 |
---|---|---|
committer | Benjamin, Max (mb388a) <mb388a@us.att.com> | 2019-03-27 10:11:06 -0400 |
commit | be2e8c565b7976b81350e890df40c8d145340c28 (patch) | |
tree | ee0993ec7d1639e913b3510de3b3c035aee88ace /common/src | |
parent | 77b18c57bc9de5d8ef7f829e18cd8a91a5495b3c (diff) |
set a default bean for RestTemplate
Change-Id: Ie32f5425d44f05fb5aa87e737aeabb393c978643
Issue-ID: SO-1706
Signed-off-by: Benjamin, Max (mb388a) <mb388a@us.att.com>
Diffstat (limited to 'common/src')
-rw-r--r-- | common/src/main/java/org/onap/so/client/RestTemplateConfig.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/src/main/java/org/onap/so/client/RestTemplateConfig.java b/common/src/main/java/org/onap/so/client/RestTemplateConfig.java index 34ad6ef758..0633ae74c9 100644 --- a/common/src/main/java/org/onap/so/client/RestTemplateConfig.java +++ b/common/src/main/java/org/onap/so/client/RestTemplateConfig.java @@ -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 |