Uses of Interface
org.springframework.http.codec.HttpMessageReader
Packages that use HttpMessageReader
Package
Description
Provides implementations of
Encoder
and Decoder
for web use.Multipart support.
-
Uses of HttpMessageReader in org.springframework.http.codec
Classes in org.springframework.http.codec that implement HttpMessageReaderModifier and TypeClassDescriptionclass
HttpMessageReader
that wraps and delegates to aDecoder
.class
Implementation of anHttpMessageReader
to read HTML form data, i.e.class
HttpMessageReader
that wraps and delegates to aResourceDecoder
that extracts the filename from the"Content-Disposition"
header, if available, and passes it as theResourceDecoder.FILENAME_HINT
.class
Reader that supports a stream ofServerSentEvents
and also plainObjects
which is the same as anServerSentEvent
with data only.Methods in org.springframework.http.codec that return types with arguments of type HttpMessageReaderModifier and TypeMethodDescriptionCodecConfigurer.getReaders()
Obtain the configured HTTP message readers.Methods in org.springframework.http.codec with parameters of type HttpMessageReaderModifier and TypeMethodDescriptionvoid
CodecConfigurer.DefaultCodecs.multipartReader
(HttpMessageReader<?> reader) Configure theHttpMessageReader
to use for multipart requests.void
CodecConfigurer.CustomCodecs.reader
(HttpMessageReader<?> reader) Deprecated. -
Uses of HttpMessageReader in org.springframework.http.codec.multipart
Classes in org.springframework.http.codec.multipart that implement HttpMessageReaderModifier and TypeClassDescriptionclass
class
HttpMessageReader
for reading"multipart/form-data"
requests into aMultiValueMap<String, Part>
.class
Methods in org.springframework.http.codec.multipart that return HttpMessageReaderModifier and TypeMethodDescriptionMultipartHttpMessageReader.getPartReader()
Return the configured parts reader.Constructors in org.springframework.http.codec.multipart with parameters of type HttpMessageReader
CodecConfigurer.CustomCodecs.register(Object)
orCodecConfigurer.CustomCodecs.registerWithDefaultConfig(Object)
instead.