#Java#Spring#WebFlux#Reactor#WebClient#Uri#传参#数组#列表#
WebClient Uri列表、数组传参
视频讲解: www.bilibili.com/video/av833…

@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分钟视频学习
