4

我想使用 play 2 对外部 api 发出多个 Web 请求。每个 Web 请求都会因page参数而异。我的代码是:

static WSRequestHolder urlPaging = WS
        .url("http://my_api")
        .setQueryParameter("apiKey", "api_key")
        .setQueryParameter("pageSize", "5")
        .setQueryParameter("format", "json");

public static Result insertProducts() {
    int totalPages = 83;
    Logger.info("total pages: " + totalPages);
    for (int currentPage = 1; currentPage < totalPages; currentPage++) {
        Logger.info("--current page:" + currentPage);
        result(currentPage);
    }
    return ok();
}

public static AsyncResult result(int currentPage) {
    return async(urlPaging
            .setQueryParameter("page", String.valueOf(currentPage)).get()
            .map(new Function<WS.Response, Result>() {
                public Result apply(WS.Response response) {
                    insertProductsFromPage(response);
                    return ok();
                }
            }));
}

它适用于第 1 页,但给我第 2 页的内部错误,所以我怀疑我没有result正确构建异步请求方法。请注意,我不需要这个真正的异步,因为我是从管理员运行的,我可以在那里等到所有这些请求都被解析,但我在 play 2 中没有找到同步方式。你能告诉我我做错了什么吗?

4

1 回答 1

5

如果要同步进行外部 WS 调用,只需使用promise的get()方法即可。

例如:

Promise<WS.Response> promise = urlPaging.setQueryParameter("page", String.valueOf(currentPage)).get();
WS.Response response = promise.get(); // wait for the result of the promise.
于 2012-10-07T12:48:25.927 回答