Package | Description |
---|---|
org.springframework.http.codec |
Provides implementations of
Encoder
and Decoder for web use. |
org.springframework.http.codec.multipart |
Multipart support.
|
Modifier and Type | Class and Description |
---|---|
class |
DecoderHttpMessageReader<T>
HttpMessageReader that wraps and delegates to a Decoder . |
class |
FormHttpMessageReader
Implementation of an
HttpMessageReader to read HTML form data, i.e. |
class |
ServerSentEventHttpMessageReader
Reader that supports a stream of
ServerSentEvent s and also plain
Object s which is the same as an ServerSentEvent with data only. |
Modifier and Type | Method and Description |
---|---|
java.util.List<HttpMessageReader<?>> |
CodecConfigurer.getReaders()
Obtain the configured HTTP message readers.
|
Modifier and Type | Method and Description |
---|---|
void |
CodecConfigurer.CustomCodecs.reader(HttpMessageReader<?> reader)
Add a custom
HttpMessageReader . |
Modifier and Type | Class and Description |
---|---|
class |
MultipartHttpMessageReader
HttpMessageReader for reading "multipart/form-data" requests
into a MultiValueMap<String, Part> . |
class |
SynchronossPartHttpMessageReader
HttpMessageReader for parsing "multipart/form-data" requests
to a stream of Part 's using the Synchronoss NIO Multipart library. |
Constructor and Description |
---|
MultipartHttpMessageReader(HttpMessageReader<Part> partReader) |