Uses of Interface
org.springframework.http.codec.HttpMessageReader
Packages that use HttpMessageReader Package Description org.springframework.http.codec org.springframework.http.codec.multipart Multipart support.org.springframework.mock.web.reactive.function.server Mock objects for the functional web framework.org.springframework.web.reactive.function Provides a foundation for both the reactive client and server subpackages.org.springframework.web.reactive.function.client Provides a reactiveWebClientthat builds on top of theorg.springframework.http.client.reactivereactive HTTP adapter layer.org.springframework.web.reactive.function.server Provides the types that make up Spring's functional web framework for Reactive environments.org.springframework.web.reactive.function.server.support Classes supporting theorg.springframework.web.reactive.function.serverpackage.org.springframework.web.reactive.result.method.annotation Infrastructure for annotation-based handler method processing.Uses of HttpMessageReader in org.springframework.http.codec
Classes in org.springframework.http.codec that implement HttpMessageReader Modifier and Type Class Description classDecoderHttpMessageReader<T>HttpMessageReaderthat wraps and delegates to aDecoder.classFormHttpMessageReaderImplementation of anHttpMessageReaderto read HTML form data, i.e.classResourceHttpMessageReaderHttpMessageReaderthat wraps and delegates to aResourceDecoderthat extracts the filename from the"Content-Disposition"header, if available, and passes it as theResourceDecoder.FILENAME_HINT.classServerSentEventHttpMessageReaderReader that supports a stream ofServerSentEventsand also plainObjectswhich is the same as anServerSentEventwith data only.Methods in org.springframework.http.codec that return types with arguments of type HttpMessageReader Modifier and Type Method Description List<HttpMessageReader<?>>CodecConfigurer. getReaders()Obtain the configured HTTP message readers.Methods in org.springframework.http.codec with parameters of type HttpMessageReader Modifier and Type Method Description voidServerCodecConfigurer.ServerDefaultCodecs. multipartReader(HttpMessageReader<?> reader)Configure theHttpMessageReaderto use for multipart requests.voidCodecConfigurer.CustomCodecs. reader(HttpMessageReader<?> reader)Deprecated.as of 5.1.13, useCodecConfigurer.CustomCodecs.register(Object)orCodecConfigurer.CustomCodecs.registerWithDefaultConfig(Object)instead.Uses of HttpMessageReader in org.springframework.http.codec.multipart
Classes in org.springframework.http.codec.multipart that implement HttpMessageReader Modifier and Type Class Description classMultipartHttpMessageReaderHttpMessageReaderfor reading"multipart/form-data"requests into aMultiValueMap<String, Part>.classSynchronossPartHttpMessageReaderHttpMessageReaderfor parsing"multipart/form-data"requests to a stream ofPart's using the Synchronoss NIO Multipart library.Methods in org.springframework.http.codec.multipart that return HttpMessageReader Modifier and Type Method Description HttpMessageReader<Part>MultipartHttpMessageReader. getPartReader()Return the configured parts reader.Constructors in org.springframework.http.codec.multipart with parameters of type HttpMessageReader Constructor Description MultipartHttpMessageReader(HttpMessageReader<Part> partReader)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 HttpMessageReader Modifier and Type Method Description List<HttpMessageReader<?>>MockServerRequest. messageReaders()Method parameters in org.springframework.mock.web.reactive.function.server with type arguments of type HttpMessageReader Modifier and Type Method Description MockServerRequest.BuilderMockServerRequest.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 HttpMessageReader Modifier and Type Method Description List<HttpMessageReader<?>>BodyExtractor.Context. messageReaders()Return theHttpMessageReadersto 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 HttpMessageReader Modifier and Type Method Description List<HttpMessageReader<?>>ExchangeStrategies. messageReaders()ReturnHttpMessageReadersto read and decode the response body with.Method parameters in org.springframework.web.reactive.function.client with type arguments of type HttpMessageReader Modifier and Type Method Description static ClientResponse.BuilderClientResponse. create(HttpStatus 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 HttpMessageReader Modifier and Type Method Description List<HttpMessageReader<?>>HandlerStrategies. messageReaders()Return theHttpMessageReadersto be used for request body conversion.List<HttpMessageReader<?>>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 HttpMessageReader Modifier and Type Method Description static ServerRequestServerRequest. create(ServerWebExchange exchange, List<HttpMessageReader<?>> messageReaders)Create a newServerRequestbased on the givenServerWebExchangeand 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 HttpMessageReader Modifier and Type Method Description List<HttpMessageReader<?>>ServerRequestWrapper. messageReaders()Method parameters in org.springframework.web.reactive.function.server.support with type arguments of type HttpMessageReader Modifier and Type Method Description voidRouterFunctionMapping. 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 HttpMessageReader Modifier and Type Method Description List<HttpMessageReader<?>>AbstractMessageReaderArgumentResolver. getMessageReaders()Return the configured message converters.List<HttpMessageReader<?>>RequestMappingHandlerAdapter. getMessageReaders()Return the configurer for HTTP message readers.Method parameters in org.springframework.web.reactive.result.method.annotation with type arguments of type HttpMessageReader Modifier and Type Method Description voidRequestMappingHandlerAdapter. 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 HttpMessageReader Constructor Description AbstractMessageReaderArgumentResolver(List<HttpMessageReader<?>> readers)Constructor withHttpMessageReader's and aValidator.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)