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. |
org.springframework.web.reactive.function.client.support |
Classes supporting the
org.springframework.web.reactive.function.client package. |
Modifier and Type | Method and Description |
---|---|
static WebClientResponseException |
WebClientResponseException.create(int statusCode,
String statusText,
HttpHeaders headers,
byte[] body,
Charset charset)
Create
WebClientResponseException or an HTTP status specific subclass. |
static WebClientResponseException |
WebClientResponseException.create(int statusCode,
String statusText,
HttpHeaders headers,
byte[] body,
Charset charset,
HttpRequest request)
Create
WebClientResponseException or an HTTP status specific subclass. |
Modifier and Type | Method and Description |
---|---|
reactor.core.publisher.Mono<WebClientResponseException> |
ClientResponse.createException()
Create a
WebClientResponseException that contains the response
status, headers, body, and the originating request. |
Modifier and Type | Method and Description |
---|---|
reactor.core.publisher.Mono<WebClientResponseException> |
ClientResponseWrapper.createException() |