раза идёт из стрима читать
Mono<MyRequest> request = serverRequest.bodyToMono(MyRequest.class);
Flux<Post> postsById = request
.map(x -> x.ids)
...
//org.springframework.core.codec.DecodingException: JSON decoding error: Already closed, can not feed more input
Flux<Post> postsByRef = request
.map(x -> x.refs)
...
https://projectreactor.io/docs/core/release/api/reactor/core/publisher/Mono.html#cache--
Обсуждают сегодня