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 |
ResourceHttpMessageReader
HttpMessageReader that wraps and delegates to a ResourceDecoder
that extracts the filename from the "Content-Disposition" header, if
available, and passes it as the ResourceDecoder.FILENAME_HINT . |
class |
ServerSentEventHttpMessageReader
Reader that supports a stream of
ServerSentEvents and also plain
Objects which is the same as an ServerSentEvent with data only. |
Modifier and Type | Method and Description |
---|---|
List<HttpMessageReader<?>> |
CodecConfigurer.getReaders()
Obtain the configured HTTP message readers.
|
Modifier and Type | Method and Description |
---|---|
void |
ServerCodecConfigurer.ServerDefaultCodecs.multipartReader(HttpMessageReader<?> reader)
Configure the
HttpMessageReader to use for multipart requests. |
void |
CodecConfigurer.CustomCodecs.reader(HttpMessageReader<?> reader)
Deprecated.
as of 5.1.13, use
CodecConfigurer.CustomCodecs.register(Object) or
CodecConfigurer.CustomCodecs.registerWithDefaultConfig(Object) instead. |
Modifier and Type | Class and Description |
---|---|
class |
DefaultPartHttpMessageReader
|
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. |
Modifier and Type | Method and Description |
---|---|
HttpMessageReader<Part> |
MultipartHttpMessageReader.getPartReader()
Return the configured parts reader.
|
Constructor and Description |
---|
MultipartHttpMessageReader(HttpMessageReader<Part> partReader) |