如何使用Reactor(Spring WebClient)进行重复调用?

问题描述 投票:1回答:2

我使用Reactor(Spring5 WebClient)作为我的反应式编程API。我有2个REST端点可以调用。第一个的结果将是第二个的参数。对于第二个API,它将返回带有“hasMore”值的结果。如果此值为true,我应该更改分页参数并再次调用第二个API。演示代码如下:

 client.getApi1()
        .map(r -> r.getResult())
        .flatMap(p -> client.getApi2(p, 2(page size), 1(page start)))
        .subscribe(r -> System.out.println(r.isHasmore()));

如何重复调用第二个API(getApi2)直到“hasMore”为false。

此外,我需要更改参数页面大小和页面开始

spring spring-webflux project-reactor
2个回答
3
投票

试试这段代码:

 AtomicInteger pageCounter = new AtomicInteger(0);
 client.getApi1()
    .map(r -> r.getResult())
    .flatMap(p -> client.getApi2(p, 2(page size), pageCounter.incrementAndGet()))
    .repeat()            
    .takeWhile(r -> r.isHasmore())
    .subscribe(r -> System.out.println(r.isHasmore()));

repeat()无限地调用getApi2。当continuePredicate(takeWhile(continuePredicate))返回true时,r.isHasmore()会传递值


0
投票

我通过使用expand运算符找到了解决方案。但是,需要对我的API调用进行一些更改。来自getApi2的响应需要返回最后一页的大小和最后一页的开始。

    client.getApi1()
        .map(r -> r.getResult())
        .getApi2(p, 2, 1)
        .expand(res -> {
            if (res.isHasmore()) {
                return client.getApi2(orgId, res.getPageSize(), res.PageStart() + 1);
            }
            return Flux.empty();
        });
© www.soinside.com 2019 - 2024. All rights reserved.