我想使用 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 中没有找到同步方式。你能告诉我我做错了什么吗?