WebFlux系列WebClient 异常处理

Posted JAVA微编程

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WebFlux系列WebClient 异常处理相关的知识,希望对你有一定的参考价值。

#Java#Spring#WebFlux#Reactor#WebClient#异常处理#

WebClient 异常处理

视频讲解: https://www.bilibili.com/video/av83495354/

 

代码:

@GetMapping(value = "employees", produces = MediaType.TEXT_EVENT_STREAM_VALUE)
public Flux<Employee> findAll() {
  return WebClient.create("localhost:8080/employees")
      .get()
      .retrieve()
      .onStatus(HttpStatus::is5xxServerError, clientResponse -> {
        return Mono.error(new Cum5xxException(clientResponse.statusCode().value() + " error code"));
      })
      .onStatus(HttpStatus::is4xxClientError, clientResponse -> {
        return Mono.error(new Cum4xxException(clientResponse.statusCode().value() + " error code"));
      })
      .onStatus(HttpStatus::isError, clientResponse -> {
        return Mono.error(new Cum4xxException(clientResponse.statusCode().value() + " error code"));
      })
      .bodyToFlux(Employee.class);
}

公众号,坚持每天3分钟视频学习

以上是关于WebFlux系列WebClient 异常处理的主要内容,如果未能解决你的问题,请参考以下文章

WebFlux系列WebClient 日志

如何使用 Spring Boot 对 WebFlux 进行异常处理?

WebFlux系列WebClient Post传参

WebFlux系列WebClient VS RestTemplate

WebFlux系列WebClient Uri列表数组传参

在 WebFlux WebClient 中测试状态码时如何获取响应正文?