webflux 对url参数的接收处理
生活随笔
收集整理的這篇文章主要介紹了
webflux 对url参数的接收处理
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
普通寫法
@GetMapping("/person/{id}")Mono<Person> findById(@PathVariable String id) {return this.repository.findOne(id);}函數式寫法-方法
public Mono<ServerResponse> getPerson(ServerRequest request) { int personId = Integer.valueOf(request.pathVariable("id"));Mono<ServerResponse> notFound = ServerResponse.notFound().build();Mono<Person> personMono = this.repository.getPerson(personId);return personMono.then(person -> ServerResponse.ok().contentType(APPLICATION_JSON).body(fromObject(person))).otherwiseIfEmpty(notFound);}函數式寫法-綁定路由
RouterFunction<ServerResponse> personRoute =route(GET("/person/{id}").and(accept(APPLICATION_JSON)), handler::getPerson)?
總結
以上是生活随笔為你收集整理的webflux 对url参数的接收处理的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 博客园自动添加版权说明,自动添加文章链接
- 下一篇: devcon-计算机硬件设备的禁用与启动