Skip to content

Files

Latest commit

b7a6a40 · May 13, 2015

History

History
12 lines (9 loc) · 445 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 445 Bytes

Apache HttpClient

This module directs Feign's http requests to Apache's HttpClient.

To use HttpClient with Feign, add the HttpClient module to your classpath. Then, configure Feign to use the HttpClient:

GitHub github = Feign.builder()
                     .client(new ApacheHttpClient())
                     .target(GitHub.class, "https://api.github.com");