| Package | Description |
|---|---|
| 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. |
| Modifier and Type | Method and Description |
|---|---|
WebClient |
WebClient.Builder.build()
Builder the
WebClient instance. |
static WebClient |
WebClient.create()
Create a new
WebClient with no default, shared preferences across
requests such as base URI, default headers, and others. |
static WebClient |
WebClient.create(java.lang.String baseUrl)
Configure a base URI for requests performed through the client for
example to avoid repeating the same host, port, base path, or even
query parameters with every request.
|