public class HttpComponentsClientHttpRequestFactory extends java.lang.Object implements ClientHttpRequestFactory, DisposableBean
ClientHttpRequestFactory
implementation that
uses Apache HttpComponents
HttpClient to create requests.
Allows to use a pre-configured HttpClient
instance -
potentially with authentication, HTTP connection pooling, etc.
Modifier and Type | Field and Description |
---|---|
private boolean |
bufferRequestBody |
private int |
connectTimeout |
private CloseableHttpClient |
httpClient |
private int |
socketTimeout |
Constructor and Description |
---|
HttpComponentsClientHttpRequestFactory()
Create a new instance of the
HttpComponentsClientHttpRequestFactory with
a default HttpClient . |
HttpComponentsClientHttpRequestFactory(CloseableHttpClient httpClient)
Create a new instance of the
HttpComponentsClientHttpRequestFactory
with the given HttpClient instance. |
Modifier and Type | Method and Description |
---|---|
protected HttpContext |
createHttpContext(HttpMethod httpMethod,
java.net.URI uri)
Template methods that creates a
HttpContext for the given HTTP method and URI. |
protected HttpUriRequest |
createHttpUriRequest(HttpMethod httpMethod,
java.net.URI uri)
Create a Commons HttpMethodBase object for the given HTTP method and URI specification.
|
ClientHttpRequest |
createRequest(java.net.URI uri,
HttpMethod httpMethod)
Create a new
ClientHttpRequest for the specified URI and HTTP method. |
void |
destroy()
Shutdown hook that closes the underlying
ClientConnectionManager 's
connection pool, if any. |
CloseableHttpClient |
getHttpClient()
Return the
HttpClient used for
synchronous execution. |
boolean |
isBufferRequestBody()
Indicates whether this request factory should buffer the request body internally.
|
protected void |
postProcessHttpRequest(HttpUriRequest request)
Template method that allows for manipulating the
HttpUriRequest before it is
returned as part of a HttpComponentsClientHttpRequest . |
void |
setBufferRequestBody(boolean bufferRequestBody)
Indicates whether this request factory should buffer the request body internally.
|
void |
setConnectTimeout(int timeout)
Set the connection timeout for the underlying HttpClient.
|
void |
setHttpClient(CloseableHttpClient httpClient)
Set the
HttpClient used for
synchronous execution. |
void |
setReadTimeout(int timeout)
Set the socket read timeout for the underlying HttpClient.
|
private int connectTimeout
private int socketTimeout
private CloseableHttpClient httpClient
private boolean bufferRequestBody
public HttpComponentsClientHttpRequestFactory()
HttpComponentsClientHttpRequestFactory
with
a default HttpClient
.public HttpComponentsClientHttpRequestFactory(CloseableHttpClient httpClient)
HttpComponentsClientHttpRequestFactory
with the given HttpClient
instance.httpClient
- the HttpClient instance to use for this request factorypublic void setHttpClient(CloseableHttpClient httpClient)
HttpClient
used for
synchronous execution.public CloseableHttpClient getHttpClient()
HttpClient
used for
synchronous execution.public void setConnectTimeout(int timeout)
timeout
- the timeout value in millisecondspublic void setReadTimeout(int timeout)
timeout
- the timeout value in millisecondspublic void setBufferRequestBody(boolean bufferRequestBody)
Default is true
. When sending large amounts of data via POST or PUT, it is
recommended to change this property to false
, so as not to run out of memory.
public boolean isBufferRequestBody()
public ClientHttpRequest createRequest(java.net.URI uri, HttpMethod httpMethod) throws java.io.IOException
ClientHttpRequestFactory
ClientHttpRequest
for the specified URI and HTTP method.
The returned request can be written to, and then executed by calling
ClientHttpRequest.execute()
.
createRequest
in interface ClientHttpRequestFactory
uri
- the URI to create a request forhttpMethod
- the HTTP method to executejava.io.IOException
- in case of I/O errorsprotected HttpUriRequest createHttpUriRequest(HttpMethod httpMethod, java.net.URI uri)
httpMethod
- the HTTP methoduri
- the URIprotected void postProcessHttpRequest(HttpUriRequest request)
HttpUriRequest
before it is
returned as part of a HttpComponentsClientHttpRequest
.
The default implementation is empty.
request
- the request to processprotected HttpContext createHttpContext(HttpMethod httpMethod, java.net.URI uri)
HttpContext
for the given HTTP method and URI.
The default implementation returns null
.
httpMethod
- the HTTP methoduri
- the URIpublic void destroy() throws java.lang.Exception
ClientConnectionManager
's
connection pool, if any.destroy
in interface DisposableBean
java.lang.Exception
- in case of shutdown errors.
Exceptions will get logged but not rethrown to allow
other beans to release their resources too.