当结合使用BodyToMono和Spring WebClient的retrieve()方法时,将应用默认错误处理(如果响应的状态码为4xx或5xx,则Mono将包含WebClientException)。在错误情况下,产生的WebClientException非常有用,因为它包含请求和响应,这非常方便,例如用于记录。此外,我可以很好地对错误做出反应。
/*
* Easy to use retrieve() with default error handling:
* By default, if the response has status code 4xx or 5xx, the Mono will contain a WebClientException - AWESOME!
*/
public Optional<MyType> getMyType() {
try {
MyType result = client
.get()
.uri("/myType")
.retrieve().bodyToMono(MyType.class).block();
return Optional.ofNullable(result);
} catch (NotFound e) {
return Optional.empty();
}
}
但是,有时我需要知道响应的确切状态码,以便在进一步处理此响应时对其做出反应。还要获取状态代码的唯一方法是调用exchange()方法,而不是restore()方法。不幸的是,在这种情况下,未应用默认错误处理。造成这种情况的原因似乎是,在ClientResponse上调用bodyToMono()的语义与在ResponseSpec上调用的语义不同。
我无法从Spring调用已经实现的方法来“触发”错误处理,因为所有不错的方法都以私有方式埋在WebClient中。
即使我尝试“手动”创建WebClientResponseException我也无法 访问该请求以提供异常信息。
public String updateMyType() {
ClientResponse response = client
.put()
.uri("/myType")
.header(CONTENT_TYPE, APPLICATION_JSON_VALUE)
.body(fromObject(new MyType()))
.exchange()
.block();
if (response.statusCode().equals(HttpStatus.CREATED)) {
return "OK";
} else if (response.statusCode().equals(HttpStatus.NO_CONTENT)) {
return "updated";
} else {
byte[] bodyBytes = null; // already implemented by Sping but not accessible
Charset charset = null; // already implemented by Sping but not accessible
HttpRequest request = null; // where should I get this from?
throw WebClientResponseException.create(response.statusCode().value(),
response.statusCode().getReasonPhrase(),
response.headers().asHttpHeaders(),
bodyBytes,
charset,
request);
}
}
“模仿” retrieve()方法的相同行为的最佳方法是什么?
答案 0 :(得分:1)
回答问题时可能不是这种情况,但是自Spring 5.2起,ClientResponse
有一个createException()
方法将建立并返回一个Mono<WebClientResponseException>
。
clientResponse.createException()
.flatMap(e -> handleException(e))
https://github.com/spring-projects/spring-framework/commit/b4207823afa0f48e06d6bbfe9ae8821e389e380f