Uses of Interface
org.springframework.web.reactive.function.BodyExtractor
Packages that use BodyExtractor Package Description 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.client.support Classes supporting theorg.springframework.web.reactive.function.clientpackage.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.Uses of BodyExtractor in org.springframework.mock.web.reactive.function.server
Methods in org.springframework.mock.web.reactive.function.server with parameters of type BodyExtractor Modifier and Type Method Description <S> SMockServerRequest. body(BodyExtractor<S,? super ServerHttpRequest> extractor)<S> SMockServerRequest. body(BodyExtractor<S,? super ServerHttpRequest> extractor, Map<String,Object> hints)Uses of BodyExtractor in org.springframework.web.reactive.function
Methods in org.springframework.web.reactive.function that return BodyExtractor Modifier and Type Method Description static BodyExtractor<reactor.core.publisher.Flux<DataBuffer>,ReactiveHttpInputMessage>BodyExtractors. toDataBuffers()Extractor that returns the rawDataBuffers.static <T> BodyExtractor<reactor.core.publisher.Flux<T>,ReactiveHttpInputMessage>BodyExtractors. toFlux(Class<? extends T> elementClass)Extractor to decode the input content intoFlux<T>.static <T> BodyExtractor<reactor.core.publisher.Flux<T>,ReactiveHttpInputMessage>BodyExtractors. toFlux(ParameterizedTypeReference<T> typeRef)Variant ofBodyExtractors.toFlux(Class)for type information with generics.static BodyExtractor<reactor.core.publisher.Mono<MultiValueMap<String,String>>,ReactiveHttpInputMessage>BodyExtractors. toFormData()Extractor to read form data intoMultiValueMap<String, String>.static <T> BodyExtractor<reactor.core.publisher.Mono<T>,ReactiveHttpInputMessage>BodyExtractors. toMono(Class<? extends T> elementClass)Extractor to decode the input content intoMono<T>.static <T> BodyExtractor<reactor.core.publisher.Mono<T>,ReactiveHttpInputMessage>BodyExtractors. toMono(ParameterizedTypeReference<T> elementTypeRef)Variant ofBodyExtractors.toMono(Class)for type information with generics.static BodyExtractor<reactor.core.publisher.Mono<MultiValueMap<String,Part>>,ServerHttpRequest>BodyExtractors. toMultipartData()Extractor to read multipart data into aMultiValueMap<String, Part>.static BodyExtractor<reactor.core.publisher.Flux<Part>,ServerHttpRequest>BodyExtractors. toParts()Extractor to read multipart data intoFlux<Part>.Uses of BodyExtractor in org.springframework.web.reactive.function.client
Methods in org.springframework.web.reactive.function.client with parameters of type BodyExtractor Modifier and Type Method Description <T> TClientResponse. body(BodyExtractor<T,? super ClientHttpResponse> extractor)Extract the body with the givenBodyExtractor.Uses of BodyExtractor in org.springframework.web.reactive.function.client.support
Methods in org.springframework.web.reactive.function.client.support with parameters of type BodyExtractor Modifier and Type Method Description <T> TClientResponseWrapper. body(BodyExtractor<T,? super ClientHttpResponse> extractor)Uses of BodyExtractor in org.springframework.web.reactive.function.server
Methods in org.springframework.web.reactive.function.server with parameters of type BodyExtractor Modifier and Type Method Description <T> TServerRequest. body(BodyExtractor<T,? super ServerHttpRequest> extractor)Extract the body with the givenBodyExtractor.<T> TServerRequest. body(BodyExtractor<T,? super ServerHttpRequest> extractor, Map<String,Object> hints)Extract the body with the givenBodyExtractorand hints.Uses of BodyExtractor in org.springframework.web.reactive.function.server.support
Methods in org.springframework.web.reactive.function.server.support with parameters of type BodyExtractor Modifier and Type Method Description <T> TServerRequestWrapper. body(BodyExtractor<T,? super ServerHttpRequest> extractor)<T> TServerRequestWrapper. body(BodyExtractor<T,? super ServerHttpRequest> extractor, Map<String,Object> hints)