我想以同样的方式处理标准的 http 错误。我怎么能用 Spring 做到这一点WebClient
?而不是在下面的每个呼叫上挂起状态检查
webClient.get()
.uri("http://localhost:8081/resource")
.retrieve()
.onStatus(HttpStatus::isError, clientResponse -> {
// some error handling logic
})
.bodyToMono(MyPojo.class);