WebClient
https://www.cnblogs.com/crazymakercircle/p/14361256.html#autoid-h3-5-2-0
WebClient 是什么
创建WebClient
WebClient webClient = WebClient.create("http://localhost:8080");
webClient.get().uri("/hello").retrieve().bodyToMono(String.class).subscribe(System.out::println);WebClient webClient = WebClient.builder().baseUrl("http://localhost:8080").build();WebClient 实例克隆
最后更新于