现在我的代码如下所示:
List<Mono<ResponseEntity<String>>> response = queue.stream()
.map(req-> webClient
.post()
.bodyValue(req)
.retrieve()
.toEntity(String.class)
)
.collect(Collectors.toList());
我怎么能等待所有回复都被接受的那一刻?
如果某些请求失败,我只想重试它们。
我怎样才能实现它?