Uses of Interface
org.springframework.http.codec.HttpMessageReader
Packages that use 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
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 -
Uses of HttpMessageReader in org.springframework.mock.web.reactive.function.server
Methods in org.springframework.mock.web.reactive.function.server that return types with arguments of type HttpMessageReaderMethod parameters in org.springframework.mock.web.reactive.function.server with type arguments of type HttpMessageReaderModifier and TypeMethodDescriptionMockServerRequest.Builder.messageReaders
(List<HttpMessageReader<?>> messageReaders) -
Uses of HttpMessageReader in org.springframework.web.reactive.function
Methods in org.springframework.web.reactive.function that return types with arguments of type HttpMessageReaderModifier and TypeMethodDescriptionBodyExtractor.Context.messageReaders()
Return theHttpMessageReaders
to be used for body extraction. -
Uses of HttpMessageReader in org.springframework.web.reactive.function.client
Methods in org.springframework.web.reactive.function.client that return types with arguments of type HttpMessageReaderModifier and TypeMethodDescriptionExchangeStrategies.messageReaders()
ReturnHttpMessageReaders
to read and decode the response body with.Method parameters in org.springframework.web.reactive.function.client with type arguments of type HttpMessageReaderModifier 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
Methods in org.springframework.web.reactive.function.server that return types with arguments of type HttpMessageReaderModifier 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.Method parameters in org.springframework.web.reactive.function.server with type arguments of type HttpMessageReaderModifier 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
Methods in org.springframework.web.reactive.function.server.support that return types with arguments of type HttpMessageReaderMethod parameters in org.springframework.web.reactive.function.server.support with type arguments of type HttpMessageReaderModifier 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
Methods in org.springframework.web.reactive.result.method.annotation that return types with arguments of type HttpMessageReaderModifier and TypeMethodDescriptionAbstractMessageReaderArgumentResolver.getMessageReaders()
Return the configured message converters.RequestMappingHandlerAdapter.getMessageReaders()
Return the configurer for HTTP message readers.Method parameters in org.springframework.web.reactive.result.method.annotation with type arguments of type HttpMessageReaderModifier and TypeMethodDescriptionvoid
RequestMappingHandlerAdapter.setMessageReaders
(List<HttpMessageReader<?>> messageReaders) Configure HTTP message readers to de-serialize the request body with.Constructor parameters in org.springframework.web.reactive.result.method.annotation with type arguments of type HttpMessageReaderModifierConstructorDescriptionprotected
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.