Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save marciorodrigues87/8074238bf05c88f5b77c3e425a76ff10 to your computer and use it in GitHub Desktop.
Save marciorodrigues87/8074238bf05c88f5b77c3e425a76ff10 to your computer and use it in GitHub Desktop.
RestTemplateConfigStepThree.java
final HttpClient httpClient = HttpClients.custom()
.setMaxConnPerRoute(100)
.setMaxConnTotal(1000)
.setConnectionTimeToLive(30, MINUTES) //<--
.build();
final RestTemplate restTemplate = new RestTemplate(new HttpComponentsClientHttpRequestFactory(httpClient));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment