| 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 reactive  
WebClient
 that builds on top of the
 org.springframework.http.client.reactive reactive 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 the  
org.springframework.web.reactive.function.server package. | 
| org.springframework.web.reactive.result.method.annotation | 
 Infrastructure for annotation-based handler method processing. 
 | 
| 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)  | 
| Modifier and Type | Method and Description | 
|---|---|
List<HttpMessageReader<?>> | 
MockServerRequest.messageReaders()  | 
| Modifier and Type | Method and Description | 
|---|---|
MockServerRequest.Builder | 
MockServerRequest.Builder.messageReaders(List<HttpMessageReader<?>> messageReaders)  | 
| Modifier and Type | Method and Description | 
|---|---|
List<HttpMessageReader<?>> | 
BodyExtractor.Context.messageReaders()
Return the  
HttpMessageReaders to be used for body extraction. | 
| Modifier and Type | Method and Description | 
|---|---|
List<HttpMessageReader<?>> | 
ExchangeStrategies.messageReaders()
Return  
HttpMessageReaders to read and decode the response body with. | 
| Modifier and Type | Method and Description | 
|---|---|
static ClientResponse.Builder | 
ClientResponse.create(HttpStatus statusCode,
      List<HttpMessageReader<?>> messageReaders)
Create a response builder with the given status code and message body readers. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
List<HttpMessageReader<?>> | 
ServerRequest.messageReaders()
Get the readers used to convert the body of this request. 
 | 
List<HttpMessageReader<?>> | 
HandlerStrategies.messageReaders()
Return the  
HttpMessageReaders to be used for request body conversion. | 
| Modifier and Type | Method and Description | 
|---|---|
static ServerRequest | 
ServerRequest.create(ServerWebExchange exchange,
      List<HttpMessageReader<?>> messageReaders)
Create a new  
ServerRequest based on the given ServerWebExchange and
 message readers. | 
| Modifier and Type | Method and Description | 
|---|---|
List<HttpMessageReader<?>> | 
ServerRequestWrapper.messageReaders()  | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
RouterFunctionMapping.setMessageReaders(List<HttpMessageReader<?>> messageReaders)
Configure HTTP message readers to de-serialize the request body with. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
List<HttpMessageReader<?>> | 
RequestMappingHandlerAdapter.getMessageReaders()
Return the configurer for HTTP message readers. 
 | 
List<HttpMessageReader<?>> | 
AbstractMessageReaderArgumentResolver.getMessageReaders()
Return the configured message converters. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
RequestMappingHandlerAdapter.setMessageReaders(List<HttpMessageReader<?>> messageReaders)
Configure HTTP message readers to de-serialize the request body with. 
 | 
| Constructor and Description | 
|---|
AbstractMessageReaderArgumentResolver(List<HttpMessageReader<?>> readers)
Constructor with  
HttpMessageReader's and a Validator. | 
AbstractMessageReaderArgumentResolver(List<HttpMessageReader<?>> messageReaders,
                                     ReactiveAdapterRegistry adapterRegistry)
Constructor that also accepts a  
ReactiveAdapterRegistry. | 
HttpEntityMethodArgumentResolver(List<HttpMessageReader<?>> readers,
                                ReactiveAdapterRegistry registry)  | 
RequestBodyMethodArgumentResolver(List<HttpMessageReader<?>> readers,
                                 ReactiveAdapterRegistry registry)  | 
RequestPartMethodArgumentResolver(List<HttpMessageReader<?>> readers,
                                 ReactiveAdapterRegistry registry)  |