public class HttpComponentsClientHttpRequestFactory extends 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.
Constructor and Description |
---|
HttpComponentsClientHttpRequestFactory()
Create a new instance of the
HttpComponentsClientHttpRequestFactory
with a default HttpClient . |
HttpComponentsClientHttpRequestFactory(org.apache.http.client.HttpClient httpClient)
Create a new instance of the
HttpComponentsClientHttpRequestFactory
with the given HttpClient instance. |
Modifier and Type | Method and Description |
---|---|
protected org.apache.http.protocol.HttpContext |
createHttpContext(HttpMethod httpMethod,
URI uri)
Template methods that creates a
HttpContext for the given HTTP method and URI. |
protected org.apache.http.client.methods.HttpUriRequest |
createHttpUriRequest(HttpMethod httpMethod,
URI uri)
Create a Commons HttpMethodBase object for the given HTTP method and URI specification.
|
ClientHttpRequest |
createRequest(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. |
org.apache.http.client.HttpClient |
getHttpClient()
Return the
HttpClient used for
synchronous execution. |
protected void |
postProcessHttpRequest(org.apache.http.client.methods.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(org.apache.http.client.HttpClient httpClient)
Set the
HttpClient used for |
void |
setReadTimeout(int timeout)
Set the socket read timeout for the underlying HttpClient.
|
public HttpComponentsClientHttpRequestFactory()
HttpComponentsClientHttpRequestFactory
with a default HttpClient
.public HttpComponentsClientHttpRequestFactory(org.apache.http.client.HttpClient httpClient)
HttpComponentsClientHttpRequestFactory
with the given HttpClient
instance.
As of Spring Framework 4.0, the given client is expected to be of type
CloseableHttpClient
(requiring HttpClient 4.3+).
httpClient
- the HttpClient instance to use for this request factorypublic void setHttpClient(org.apache.http.client.HttpClient httpClient)
HttpClient
used for
As of Spring Framework 4.0, the given client is expected to be of type
CloseableHttpClient
(requiring HttpClient 4.3+).
public org.apache.http.client.HttpClient 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 ClientHttpRequest createRequest(URI uri, HttpMethod httpMethod) throws 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 executeIOException
- in case of I/O errorsprotected org.apache.http.client.methods.HttpUriRequest createHttpUriRequest(HttpMethod httpMethod, URI uri)
httpMethod
- the HTTP methoduri
- the URIprotected void postProcessHttpRequest(org.apache.http.client.methods.HttpUriRequest request)
HttpUriRequest
before it is
returned as part of a HttpComponentsClientHttpRequest
.
The default implementation is empty.
request
- the request to processprotected org.apache.http.protocol.HttpContext createHttpContext(HttpMethod httpMethod, URI uri)
HttpContext
for the given HTTP method and URI.
The default implementation returns null
.
httpMethod
- the HTTP methoduri
- the URIpublic void destroy() throws Exception
ClientConnectionManager
's
connection pool, if any.destroy
in interface DisposableBean
Exception
- in case of shutdown errors.
Exceptions will get logged but not rethrown to allow
other beans to release their resources too.