
com.capitalone.dashboard.collector.RestOperationsSupplier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of udeploy-deployment-collector Show documentation
Show all versions of udeploy-deployment-collector Show documentation
Deploy Collector microservice currently collects data from IBM UCD
The newest version!
package com.capitalone.dashboard.collector;
import com.capitalone.dashboard.util.Supplier;
import org.springframework.http.client.HttpComponentsClientHttpRequestFactory;
import org.springframework.stereotype.Component;
import org.springframework.web.client.RestOperations;
import org.springframework.web.client.RestTemplate;
/**
* Supplier that returns a new {@link RestTemplate}.
*/
@Component
public class RestOperationsSupplier implements Supplier {
@Override
public RestOperations get() {
HttpComponentsClientHttpRequestFactory requestFactory = new HttpComponentsClientHttpRequestFactory();
requestFactory.setConnectTimeout(120000);
requestFactory.setReadTimeout(120000);
return new RestTemplate(requestFactory);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy