| Package | Description |
|---|---|
| org.springframework.test.web.reactive.server |
Support for testing Spring WebFlux server endpoints via
WebTestClient. |
| Modifier and Type | Method and Description |
|---|---|
WebTestClient.UriSpec<WebTestClient.RequestHeadersSpec<?>> |
WebTestClient.delete()
Prepare an HTTP DELETE request.
|
WebTestClient.UriSpec<WebTestClient.RequestHeadersSpec<?>> |
WebTestClient.get()
Prepare an HTTP GET request.
|
WebTestClient.UriSpec<WebTestClient.RequestHeadersSpec<?>> |
WebTestClient.head()
Prepare an HTTP HEAD request.
|
WebTestClient.UriSpec<WebTestClient.RequestHeadersSpec<?>> |
WebTestClient.options()
Prepare an HTTP OPTIONS request.
|
WebTestClient.UriSpec<WebTestClient.RequestBodySpec> |
WebTestClient.patch()
Prepare an HTTP PATCH request.
|
WebTestClient.UriSpec<WebTestClient.RequestBodySpec> |
WebTestClient.post()
Prepare an HTTP POST request.
|
WebTestClient.UriSpec<WebTestClient.RequestBodySpec> |
WebTestClient.put()
Prepare an HTTP PUT request.
|