Uses of Interface
org.springframework.web.reactive.function.client.ExchangeStrategies
Package
Description
Support for testing Spring WebFlux server endpoints via
WebTestClient
.Provides a reactive
WebClient
that builds on top of the
org.springframework.http.client.reactive
reactive HTTP adapter layer.Classes supporting the
org.springframework.web.reactive.function.client
package.-
Uses of ExchangeStrategies in org.springframework.test.web.reactive.server
Modifier and TypeMethodDescriptionWebTestClient.Builder.exchangeStrategies
(ExchangeStrategies strategies) Configure theExchangeStrategies
to use. -
Uses of ExchangeStrategies in org.springframework.web.reactive.function.client
Modifier and TypeMethodDescriptionExchangeStrategies.Builder.build()
Builds theExchangeStrategies
.ClientResponse.strategies()
Return the strategies used to convert the body of this response.static ExchangeStrategies
ExchangeStrategies.withDefaults()
Return anExchangeStrategies
instance with default configuration provided byClientCodecConfigurer
.Modifier and TypeMethodDescriptionstatic ClientResponse.Builder
ClientResponse.create
(int statusCode, ExchangeStrategies strategies) Create a response builder with the given raw status code and strategies for reading the body.static ClientResponse.Builder
ClientResponse.create
(HttpStatusCode statusCode, ExchangeStrategies strategies) Create a response builder with the given status code and strategies for reading the body.static ExchangeFunction
ExchangeFunctions.create
(ClientHttpConnector connector, ExchangeStrategies strategies) Create anExchangeFunction
with the givenClientHttpConnector
andExchangeStrategies
.WebClient.Builder.exchangeStrategies
(ExchangeStrategies strategies) Configure theExchangeStrategies
to use.reactor.core.publisher.Mono<Void>
ClientRequest.writeTo
(ClientHttpRequest request, ExchangeStrategies strategies) Write this request to the givenClientHttpRequest
. -
Uses of ExchangeStrategies in org.springframework.web.reactive.function.client.support