WebFlux系列WebClient Uri列表数组传参

Posted JAVA微编程

tags:

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

#Java#Spring#WebFlux#Reactor#WebClient#Uri#传参#数组#列表#

WebClient Uri列表、数组传参

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

服务端:

@RestController
class EmployeeController {
    @GetMapping("employee")
    public Mono<String> requestList(@RequestParam List<String> names, ServerHttpRequest request){
        names.stream().forEach(System.out::println);
        return Mono.just(request.getURI().toString());
    }
}

客户端:

@RestController
class EmployeeController {
  @GetMapping("employee/{names}")
  public Mono<String> request(@PathVariable List<String> names) {
    return WebClient.create(baseUrl)
        .get()
        .uri(uriBuilder -> uriBuilder.path("/employee")
            .queryParam("names", names)
            .build())
        .retrieve()
        .bodyToMono(String.class);
  }
}

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

以上是关于WebFlux系列WebClient Uri列表数组传参的主要内容,如果未能解决你的问题,请参考以下文章

WebFlux系列WebClient 日志

WebFlux系列WebClient 异常处理

WebFlux系列WebClient Post传参

WebFlux系列WebClient VS RestTemplate

Spring Webflux WebClient

WebFlux系列Server-Sent Events(续)