gpt4 book ai didi

Java - 从 OkHttp 异步 GET 检索结果

转载 作者:行者123 更新时间:2023-12-01 20:56:22 24 4
gpt4 key购买 nike

所以我在 Spring Boot 中有一个 Web 应用程序,并且有一个部分我向 API 发出了许多 HTTP 请求,如果发出太多请求,它似乎会超时。我听说从同步请求切换到异步请求可能会解决这个问题。

使用 OkHttp,这就是我的同步 GET 请求的样子:

private JSONObject run(String url) throws Exception {
Request newRequest = new Request.Builder()
.url(url)
.addHeader("Authorization", token)
.build();

try (Response response = client.newCall(newRequest).execute()) {
if (!response.isSuccessful()) throw new IOException("Unexpected code " + response);
return new JSONObject(response.body().string());

}
}

我通过解析响应正文将响应作为 JSON 对象返回。但是,在尝试使用 OkHttp 异步调用时,我似乎无法使用相同的方法。这是我到目前为止所拥有的:

public void runAsync(String url) throws Exception {
Request request = new Request.Builder()
.url(url)
.addHeader("Authorization", token)
.build();

client.newCall(request).enqueue(new Callback() {
@Override public void onFailure(Call call, IOException e) {
e.printStackTrace();
}

@Override public void onResponse(Call call, Response response) throws IOException {
if (!response.isSuccessful()) throw new IOException("Unexpected code " + response);

System.out.println(response.body().string());
}
});
}

我不能简单地以 JSON 形式返回结果,因为响应被包装在 Callback 方法内,该方法的返回值为 void。关于如何实现与提取响应的同步 GET 类似的结果,有什么想法吗?

最佳答案

我不是 Spring Boot 的用户,所以这不是一个完整的答案。但如果它支持返回 Future,那么从 OkHttp Callback 桥接到 Future 就很简单了。

这可能相关https://spring.io/guides/gs/async-method/

至于创造 future

public class OkHttpResponseFuture implements Callback {
public final CompletableFuture<Response> future = new CompletableFuture<>();

public OkHttpResponseFuture() {
}

@Override public void onFailure(Call call, IOException e) {
future.completeExceptionally(e);
}

@Override public void onResponse(Call call, Response response) throws IOException {
future.complete(response);
}
}

然后将作业放入队列

  OkHttpResponseFuture callback = new OkHttpResponseFuture();
client.newCall(request).enqueue(callback);

return callback.future.thenApply(response -> {
try {
return convertResponse(response);
} catch (IOException e) {
throw Throwables.propagate(e);
} finally {
response.close();
}
});

如果您有多个请求需要处理,您可以单独提交它们,然后等待所有结果都可用,然后再合并和返回

  public static <T> CompletableFuture<List<T>> join(List<CompletableFuture<T>> futures) {
CompletableFuture[] cfs = futures.toArray(new CompletableFuture[futures.size()]);

return CompletableFuture.allOf(cfs)
.thenApply(v -> combineIndividualResults(c));
}

关于Java - 从 OkHttp 异步 GET 检索结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42308439/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com