See: Description
Interface | Description |
---|---|
ClientCodecConfigurer |
Helps to configure a list of client-side HTTP message readers and writers
with support for built-in defaults and options to register additional custom
readers and writers via
CodecConfigurer.customCodecs() . |
ClientCodecConfigurer.ClientDefaultCodecs |
Extension of
DefaultCodecs with extra client options. |
ClientCodecConfigurer.MultipartCodecs |
Registry and container for multipart HTTP message writers.
|
CodecConfigurer |
Defines a common interface for configuring either client or server HTTP
message readers and writers.
|
CodecConfigurer.CustomCodecs |
Registry and container for custom HTTP message readers and writers.
|
CodecConfigurer.DefaultCodecs |
Assists with customizing the default HTTP message readers and writers.
|
HttpMessageDecoder<T> |
Extension of
Decoder exposing extra methods relevant in the context
of HTTP request or response body decoding. |
HttpMessageEncoder<T> |
Extension of
Encoder exposing extra methods relevant in the context
of HTTP request or response body encoding. |
HttpMessageReader<T> |
Strategy for reading from a
ReactiveHttpInputMessage and decoding
the stream of bytes to Objects of type <T> . |
HttpMessageWriter<T> |
Strategy for encoding a stream of objects of type
<T> and writing
the encoded stream of bytes to an ReactiveHttpOutputMessage . |
ServerCodecConfigurer |
Helps to configure a list of server-side HTTP message readers and writers
with support for built-in defaults and options to register additional custom
readers and writers via
CodecConfigurer.customCodecs() . |
ServerCodecConfigurer.ServerDefaultCodecs |
Extension of
DefaultCodecs with extra server options. |
ServerSentEvent.Builder<T> |
A mutable builder for a
SseEvent . |
Class | Description |
---|---|
DecoderHttpMessageReader<T> |
HttpMessageReader that wraps and delegates to a Decoder . |
EncoderHttpMessageWriter<T> |
HttpMessageWriter that wraps and delegates to a Encoder . |
FormHttpMessageReader |
Implementation of an
HttpMessageReader to read HTML form data, i.e. |
FormHttpMessageWriter |
Implementation of an
HttpMessageWriter to write HTML form data, i.e. |
ResourceHttpMessageWriter |
HttpMessageWriter that can write a Resource . |
ServerSentEvent<T> |
Representation for a Server-Sent Event for use with Spring's reactive Web support.
|
ServerSentEventHttpMessageReader |
Reader that supports a stream of
ServerSentEvent s and also plain
Object s which is the same as an ServerSentEvent with data only. |
ServerSentEventHttpMessageWriter |
HttpMessageWriter for "text/event-stream" responses. |
Encoder
and Decoder
for web use.
Also declares a high-level
HttpMessageReader
and
HttpMessageWriter
for reading and
writing the body of HTTP requests and responses.