码迷,mamicode.com
首页 > 编程语言 > 详细

WebFlux系列(九)WebClient Uri列表、数组传参

时间:2020-01-16 13:00:53      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:bilibili   tom   sys   system   create   学习   公众   builder   tostring   

#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列表、数组传参

标签:bilibili   tom   sys   system   create   学习   公众   builder   tostring   

原文地址:https://www.cnblogs.com/JavaWeiBianCheng/p/12200477.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!