Class BodyExtractors
java.lang.Object
org.springframework.web.reactive.function.BodyExtractors
Static factory methods for 
BodyExtractor implementations.- Since:
 - 5.0
 - Author:
 - Arjen Poutsma, Sebastien Deleuze, Rossen Stoyanchev, Brian Clozel
 
- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionstatic BodyExtractor<reactor.core.publisher.Flux<DataBuffer>,ReactiveHttpInputMessage> Extractor that returns the rawDataBuffers.static <T> BodyExtractor<reactor.core.publisher.Flux<T>,ReactiveHttpInputMessage> Extractor to decode the input content intoFlux<T>.static <T> BodyExtractor<reactor.core.publisher.Flux<T>,ReactiveHttpInputMessage> toFlux(ParameterizedTypeReference<T> typeRef) Variant oftoFlux(Class)for type information with generics.static BodyExtractor<reactor.core.publisher.Mono<MultiValueMap<String,String>>, ReactiveHttpInputMessage> Extractor to read form data intoMultiValueMap<String, String>.static <T> BodyExtractor<reactor.core.publisher.Mono<T>,ReactiveHttpInputMessage> Extractor to decode the input content intoMono<T>.static <T> BodyExtractor<reactor.core.publisher.Mono<T>,ReactiveHttpInputMessage> toMono(ParameterizedTypeReference<T> elementTypeRef) Variant oftoMono(Class)for type information with generics.static BodyExtractor<reactor.core.publisher.Mono<MultiValueMap<String,Part>>, ServerHttpRequest> Extractor to read multipart data into aMultiValueMap<String, Part>.static BodyExtractor<reactor.core.publisher.Flux<Part>,ServerHttpRequest> toParts()Extractor to read multipart data intoFlux<Part>. 
- 
Constructor Details
- 
BodyExtractors
public BodyExtractors() 
 - 
 - 
Method Details
- 
toMono
public static <T> BodyExtractor<reactor.core.publisher.Mono<T>,ReactiveHttpInputMessage> toMono(Class<? extends T> elementClass) Extractor to decode the input content intoMono<T>.- Type Parameters:
 T- the element type to decode to- Parameters:
 elementClass- the class of the element type to decode to- Returns:
 BodyExtractorforMono<T>
 - 
toMono
public static <T> BodyExtractor<reactor.core.publisher.Mono<T>,ReactiveHttpInputMessage> toMono(ParameterizedTypeReference<T> elementTypeRef) Variant oftoMono(Class)for type information with generics.- Type Parameters:
 T- the element type to decode to- Parameters:
 elementTypeRef- the type reference for the type to decode to- Returns:
 BodyExtractorforMono<T>
 - 
toFlux
public static <T> BodyExtractor<reactor.core.publisher.Flux<T>,ReactiveHttpInputMessage> toFlux(Class<? extends T> elementClass) Extractor to decode the input content intoFlux<T>.- Type Parameters:
 T- the element type to decode to- Parameters:
 elementClass- the class of the element type to decode to- Returns:
 BodyExtractorforFlux<T>
 - 
toFlux
public static <T> BodyExtractor<reactor.core.publisher.Flux<T>,ReactiveHttpInputMessage> toFlux(ParameterizedTypeReference<T> typeRef) Variant oftoFlux(Class)for type information with generics.- Type Parameters:
 T- the element type to decode to- Parameters:
 typeRef- the type reference for the type to decode to- Returns:
 BodyExtractorforFlux<T>
 - 
toFormData
public static BodyExtractor<reactor.core.publisher.Mono<MultiValueMap<String,String>>, toFormData()ReactiveHttpInputMessage> Extractor to read form data intoMultiValueMap<String, String>.As of 5.1 this method can also be used on the client side to read form data from a server response (for example, OAuth).
- Returns:
 BodyExtractorfor form data
 - 
toMultipartData
public static BodyExtractor<reactor.core.publisher.Mono<MultiValueMap<String,Part>>, toMultipartData()ServerHttpRequest> Extractor to read multipart data into aMultiValueMap<String, Part>.Note: that resources used for part handling, like storage for the uploaded files, is not deleted automatically, but should be done via
Part.delete().- Returns:
 BodyExtractorfor multipart data
 - 
toParts
Extractor to read multipart data intoFlux<Part>.Note: that resources used for part handling, like storage for the uploaded files, is not deleted automatically, but should be done via
Part.delete().- Returns:
 BodyExtractorfor multipart request parts
 - 
toDataBuffers
public static BodyExtractor<reactor.core.publisher.Flux<DataBuffer>,ReactiveHttpInputMessage> toDataBuffers()Extractor that returns the rawDataBuffers.Note: the data buffers should be
releasedafter being used.- Returns:
 BodyExtractorfor data buffers
 
 -