我试图归结为最简单的重试方案。执行时将忽略重试。
应用程序.java:
@SpringBootApplication
@EnableRetry
public class Application extends SpringBootServletInitializer {
//...
这是在一个服务类中:
public Boolean processItem() {
Long id = 999L;
try {
retrieveItemWithRetry(id);
return true;
} catch (NoResultException e) {
return false;
}
}
@Retryable(include=NoResultException.class, backoff = @Backoff(delay = 500, maxDelay = 3000), maxAttempts = 5)
private void retrieveItemWithRetry(Long id) {
retrieveItem(id);
}
private OrderRequest retrieveItem(Long id) {
throw new NoResultException();
}