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.
NOTE: Requires Apache HttpComponents 4.3 or higher, as of Spring 4.0.
Modifier and Type | Class and Description |
---|---|
private static class |
HttpComponentsClientHttpRequestFactory.HttpDelete
An alternative to
org.apache.http.client.methods.HttpDelete that
extends org.apache.http.client.methods.HttpEntityEnclosingRequestBase
rather than org.apache.http.client.methods.HttpRequestBase and
hence allows HTTP delete with a request body. |
Modifier and Type | Field and Description |
---|---|
private boolean |
bufferRequestBody |
private HttpClient |
httpClient |
private RequestConfig |
requestConfig |
Constructor and Description |
---|
HttpComponentsClientHttpRequestFactory()
Create a new instance of the
HttpComponentsClientHttpRequestFactory
with a default HttpClient . |
HttpComponentsClientHttpRequestFactory(HttpClient 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. |
protected RequestConfig |
createRequestConfig(java.lang.Object client)
Create a default
RequestConfig to use with the given client. |
void |
destroy()
Shutdown hook that closes the underlying
ClientConnectionManager 's
connection pool, if any. |
HttpClient |
getHttpClient()
Return the
HttpClient used for
synchronous execution. |
protected RequestConfig |
mergeRequestConfig(RequestConfig clientConfig)
Merge the given
HttpClient -level RequestConfig with
the factory-level RequestConfig , if necessary. |
protected void |
postProcessHttpRequest(HttpUriRequest request)
Template method that allows for manipulating the
HttpUriRequest before it is
returned as part of a HttpComponentsClientHttpRequest . |
private RequestConfig.Builder |
requestConfigBuilder()
Return a builder for modifying the factory-level
RequestConfig . |
void |
setBufferRequestBody(boolean bufferRequestBody)
Indicates whether this request factory should buffer the request body internally.
|
void |
setConnectionRequestTimeout(int connectionRequestTimeout)
Set the timeout in milliseconds used when requesting a connection from the connection
manager using the underlying HttpClient.
|
void |
setConnectTimeout(int timeout)
Set the connection timeout for the underlying HttpClient.
|
void |
setHttpClient(HttpClient httpClient)
Set the
HttpClient used for
synchronous execution. |
void |
setReadTimeout(int timeout)
Set the socket read timeout for the underlying HttpClient.
|
private HttpClient httpClient
private RequestConfig requestConfig
private boolean bufferRequestBody
public HttpComponentsClientHttpRequestFactory()
HttpComponentsClientHttpRequestFactory
with a default HttpClient
.public HttpComponentsClientHttpRequestFactory(HttpClient httpClient)
HttpComponentsClientHttpRequestFactory
with the given HttpClient
instance.httpClient
- the HttpClient instance to use for this request factorypublic void setHttpClient(HttpClient httpClient)
HttpClient
used for
synchronous execution.public HttpClient getHttpClient()
HttpClient
used for
synchronous execution.public void setConnectTimeout(int timeout)
Additional properties can be configured by specifying a
RequestConfig
instance on a custom HttpClient
.
timeout
- the timeout value in millisecondsRequestConfig#getConnectTimeout()
public void setConnectionRequestTimeout(int connectionRequestTimeout)
Additional properties can be configured by specifying a
RequestConfig
instance on a custom HttpClient
.
connectionRequestTimeout
- the timeout value to request a connection in millisecondsRequestConfig#getConnectionRequestTimeout()
public void setReadTimeout(int timeout)
Additional properties can be configured by specifying a
RequestConfig
instance on a custom HttpClient
.
timeout
- the timeout value in millisecondsRequestConfig#getSocketTimeout()
public 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 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 errorsprivate RequestConfig.Builder requestConfigBuilder()
RequestConfig
.protected RequestConfig createRequestConfig(java.lang.Object client)
RequestConfig
to use with the given client.
Can return null
to indicate that no custom request config should
be set and the defaults of the HttpClient
should be used.
The default implementation tries to merge the defaults of the client with the local customizations of this factory instance, if any.
client
- the HttpClient
(or HttpAsyncClient
) to checknull
)mergeRequestConfig(RequestConfig)
protected RequestConfig mergeRequestConfig(RequestConfig clientConfig)
HttpClient
-level RequestConfig
with
the factory-level RequestConfig
, if necessary.clientConfig
- the config held by the currentnull
if the given client config is null
)protected 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.