See: Description
Interface | Description |
---|---|
AsyncClientHttpRequest | Deprecated
as of Spring 5.0, in favor of
ClientRequest |
AsyncClientHttpRequestExecution | Deprecated
as of Spring 5.0, in favor of
ExchangeFilterFunction |
AsyncClientHttpRequestFactory | Deprecated
as of Spring 5.0, in favor of
ClientHttpConnector |
AsyncClientHttpRequestInterceptor | Deprecated
as of Spring 5.0, in favor of
ExchangeFilterFunction |
ClientHttpRequest |
Represents a client-side HTTP request.
|
ClientHttpRequestExecution |
Represents the context of a client-side HTTP request execution.
|
ClientHttpRequestFactory |
Factory for
ClientHttpRequest objects. |
ClientHttpRequestInterceptor |
Intercepts client-side HTTP requests.
|
ClientHttpResponse |
Represents a client-side HTTP response.
|
MultipartBodyBuilder.PartBuilder |
Builder that allows for further customization of part headers.
|
Class | Description |
---|---|
AbstractClientHttpRequest |
Abstract base for
ClientHttpRequest that makes sure that headers
and body are not written multiple times. |
AbstractClientHttpRequestFactoryWrapper |
Abstract base class for
ClientHttpRequestFactory implementations
that decorate another request factory. |
AbstractClientHttpResponse |
Abstract base for
ClientHttpResponse . |
BufferingClientHttpRequestFactory |
Wrapper for a
ClientHttpRequestFactory that buffers
all outgoing and incoming streams in memory. |
HttpComponentsAsyncClientHttpRequestFactory | Deprecated
as of Spring 5.0, with no direct replacement
|
HttpComponentsClientHttpRequestFactory |
ClientHttpRequestFactory implementation that
uses Apache HttpComponents
HttpClient to create requests. |
InterceptingAsyncClientHttpRequestFactory | Deprecated
as of Spring 5.0, with no direct replacement
|
InterceptingClientHttpRequestFactory |
ClientHttpRequestFactory wrapper with support for
ClientHttpRequestInterceptors . |
MultipartBodyBuilder |
A mutable builder for multipart form bodies.
|
MultipartBodyBuilder.PublisherEntity<T,P extends org.reactivestreams.Publisher<T>> |
Specialization of
HttpEntity for use with a
Publisher -based body, for which we also need to keep track of
the element type. |
Netty4ClientHttpRequestFactory | Deprecated
as of Spring 5.0, in favor of
ReactorClientHttpConnector |
OkHttp3ClientHttpRequestFactory |
ClientHttpRequestFactory implementation that uses
OkHttp 3.x to create requests. |
SimpleClientHttpRequestFactory |
ClientHttpRequestFactory implementation that uses standard JDK facilities. |
ClientHttpRequest
and ClientHttpResponse
,
as well as a basic implementation of these interfaces.