Uses of Interface
org.springframework.http.codec.HttpMessageReader
Package
Description
Multipart support.
Mock objects for the functional web framework.
Provides a foundation for both the reactive client and server subpackages.
Provides a reactive
WebClient
that builds on top of the
org.springframework.http.client.reactive
reactive HTTP adapter layer.Provides the types that make up Spring's functional web framework for Reactive environments.
Classes supporting the
org.springframework.web.reactive.function.server
package.Infrastructure for annotation-based handler method processing.
-
Uses of HttpMessageReader in org.springframework.http.codec
Modifier 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.Modifier and TypeMethodDescriptionCodecConfigurer.getReaders()
Obtain the configured HTTP message readers.Modifier 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
Modifier and TypeClassDescriptionclass
class
HttpMessageReader
for reading"multipart/form-data"
requests into aMultiValueMap<String, Part>
.class
Modifier and TypeMethodDescriptionMultipartHttpMessageReader.getPartReader()
Return the configured parts reader. -
Uses of HttpMessageReader in org.springframework.mock.web.reactive.function.server
Modifier and TypeMethodDescriptionMockServerRequest.Builder.messageReaders
(List<HttpMessageReader<?>> messageReaders) -
Uses of HttpMessageReader in org.springframework.web.reactive.function
Modifier and TypeMethodDescriptionBodyExtractor.Context.messageReaders()
Return theHttpMessageReaders
to be used for body extraction. -
Uses of HttpMessageReader in org.springframework.web.reactive.function.client
Modifier and TypeMethodDescriptionExchangeStrategies.messageReaders()
ReturnHttpMessageReaders
to read and decode the response body with.Modifier and TypeMethodDescriptionstatic ClientResponse.Builder
ClientResponse.create
(HttpStatusCode statusCode, List<HttpMessageReader<?>> messageReaders) Create a response builder with the given status code and message body readers. -
Uses of HttpMessageReader in org.springframework.web.reactive.function.server
Modifier and TypeMethodDescriptionHandlerStrategies.messageReaders()
Return theHttpMessageReaders
to be used for request body conversion.ServerRequest.messageReaders()
Get the readers used to convert the body of this request.Modifier and TypeMethodDescriptionstatic ServerRequest
ServerRequest.create
(ServerWebExchange exchange, List<HttpMessageReader<?>> messageReaders) Create a newServerRequest
based on the givenServerWebExchange
and message readers. -
Uses of HttpMessageReader in org.springframework.web.reactive.function.server.support
Modifier and TypeMethodDescriptionvoid
RouterFunctionMapping.setMessageReaders
(List<HttpMessageReader<?>> messageReaders) Configure HTTP message readers to de-serialize the request body with. -
Uses of HttpMessageReader in org.springframework.web.reactive.result.method.annotation
Modifier and TypeMethodDescriptionAbstractMessageReaderArgumentResolver.getMessageReaders()
Return the configured message converters.RequestMappingHandlerAdapter.getMessageReaders()
Return the configurer for HTTP message readers.Modifier and TypeMethodDescriptionvoid
RequestMappingHandlerAdapter.setMessageReaders
(List<HttpMessageReader<?>> messageReaders) Configure HTTP message readers to de-serialize the request body with.ModifierConstructorDescriptionprotected
AbstractMessageReaderArgumentResolver
(List<HttpMessageReader<?>> readers) Constructor withHttpMessageReader
's and aValidator
.protected
AbstractMessageReaderArgumentResolver
(List<HttpMessageReader<?>> messageReaders, ReactiveAdapterRegistry adapterRegistry) Constructor that also accepts aReactiveAdapterRegistry
.HttpEntityMethodArgumentResolver
(List<HttpMessageReader<?>> readers, ReactiveAdapterRegistry registry) RequestBodyMethodArgumentResolver
(List<HttpMessageReader<?>> readers, ReactiveAdapterRegistry registry) RequestPartMethodArgumentResolver
(List<HttpMessageReader<?>> readers, ReactiveAdapterRegistry registry)
CodecConfigurer.CustomCodecs.register(Object)
orCodecConfigurer.CustomCodecs.registerWithDefaultConfig(Object)
instead.