Uses of Interface
org.springframework.web.reactive.function.client.WebClient.RequestHeadersSpec
Package
Description
Provides a reactive
WebClient
that builds on top of the
org.springframework.http.client.reactive
reactive HTTP adapter layer.-
Uses of WebClient.RequestHeadersSpec in org.springframework.web.reactive.function.client
Modifier and TypeInterfaceDescriptionstatic interface
WebClient.RequestHeadersSpec<S extends WebClient.RequestHeadersSpec<S>>
Contract for specifying request headers leading up to the exchange.static interface
WebClient.RequestHeadersUriSpec<S extends WebClient.RequestHeadersSpec<S>>
Contract for specifying request headers and URI for a request.static interface
WebClient.UriSpec<S extends WebClient.RequestHeadersSpec<?>>
Contract for specifying the URI for a request.Modifier and TypeInterfaceDescriptionstatic interface
Contract for specifying request headers and body leading up to the exchange.static interface
Contract for specifying request headers, body and URI for a request.static interface
WebClient.RequestHeadersUriSpec<S extends WebClient.RequestHeadersSpec<S>>
Contract for specifying request headers and URI for a request.Modifier and TypeMethodDescriptionVariant ofWebClient.RequestBodySpec.body(Publisher, Class)
that allows using any producer that can be resolved toPublisher
viaReactiveAdapterRegistry
.WebClient.RequestBodySpec.body
(Object producer, ParameterizedTypeReference<?> elementTypeRef) Variant ofWebClient.RequestBodySpec.body(Publisher, ParameterizedTypeReference)
that allows using any producer that can be resolved toPublisher
viaReactiveAdapterRegistry
.WebClient.RequestBodySpec.body
(BodyInserter<?, ? super ClientHttpRequest> inserter) Set the body of the request using the given body inserter.<T,
P extends Publisher<T>>
WebClient.RequestHeadersSpec<?>Shortcut forWebClient.RequestBodySpec.body(BodyInserter)
with a Publisher inserter.<T,
P extends Publisher<T>>
WebClient.RequestHeadersSpec<?>WebClient.RequestBodySpec.body
(P publisher, ParameterizedTypeReference<T> elementTypeRef) Variant ofWebClient.RequestBodySpec.body(Publisher, Class)
that allows providing element type information with generics.Shortcut forWebClient.RequestBodySpec.body(BodyInserter)
with a value inserter.Deprecated.Modifier and TypeMethodDescriptionWebClient.Builder.defaultRequest
(Consumer<WebClient.RequestHeadersSpec<?>> defaultRequest) Provide a consumer to customize every request being built.
WebClient.RequestBodySpec.bodyValue(Object)