gpt4 book ai didi

java - 如何将 Spring Retry 与 AsyncRestTemplate 集成

转载 作者:搜寻专家 更新时间:2023-11-01 03:48:30 25 4
gpt4 key购买 nike

如何使用 AsyncRestTemplateSpring Retry 与外部调用集成?如果不行,是否有其他框架支持?

我的用例:

public void doSomething() throws ExecutionException, InterruptedException {

ListenableFuture<ResponseEntity<String>> future = asyncRestTemplate.getForEntity("http://localhost/foo", String.class);

// do some tasks here

ResponseEntity<String> stringResponseEntity = future.get(); // <-- How do you retry just this call?

}

如何重试此 future.get() 调用?如果外部服务返回 404,我想避免再次调用这些任务并重试外部调用?我不能只用 retryTemplate.execute() 包装 future.get() 因为它实际上不会再次调用外部服务。

最佳答案

您必须将整个 doSomething(或至少是模板操作和获取)包装在重试模板中。

编辑

您可以向 future 添加一个ListenableFutureCallback,而不是调用get();像这样的……

final AtomicReference<ListenableFuture<ResponseEntity<String>>> future = 
new AtomicReference<>(asyncRestTemplate.getForEntity("http://localhost/foo", String.class));

final CountDownLatch latch = new CountDownLatch(1);
future.addCallback(new ListenableFutureCallback<String>() {

int retries;

@Override
public void onSuccess(String result) {

if (notTheResultIWant) {
future.set(asyncTemplate.getFor (...));
future.get().addCallback(this);
retries++;
}
else {
latch.countDown();
}
}

@Override
public void onFailure(Throwable ex) {
latch.countDown();
}

});


if (latch.await(10, Timeunit.SECONDS) {
...
future.get().get();
}

关于java - 如何将 Spring Retry 与 AsyncRestTemplate 集成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35836531/

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