webflux 把返回的Flux对象转换成Mono对象

在使用一个对象列表时用Flux

public Mono<ServerResponse> listPeople(ServerRequest request) {
Flux<Person> people = repository.allPeople();
return ok().contentType(APPLICATION_JSON).body(people, Person.class);
}

但是当需要返回一个自定义的json数据时,就需要把Flux转换成Mono,使用collectList()转换为一个对象列表,代码如下:

public Mono<ServerResponse> getTitle(ServerRequest request) {
Mono<List<Title>> titleList = feignService.getTitle().collectList();
return titleList.map(data -> ReactiveResponse.builder()
.message(Message.SUCCESS)
.status(HttpStatus.SUCCESS)
.data(data)
.build()
).flatMap(data -> ServerResponse.ok().contentType(MediaType.APPLICATION_JSON)
.bodyValue(data));
}


来自为知笔记(Wiz)


posted on   白衣风云  阅读(1238)  评论(0编辑  收藏  举报

相关博文:
阅读排行:
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
· C#/.NET/.NET Core优秀项目和框架2025年2月简报
· 葡萄城 AI 搜索升级:DeepSeek 加持,客户体验更智能
· 什么是nginx的强缓存和协商缓存
· 一文读懂知识蒸馏
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

导航

统计

点击右上角即可分享
微信分享提示