当前位置:  开发笔记 > 编程语言 > 正文

@Retryable未被触发

如何解决《@Retryable未被触发》经验,为你挑选了1个好方法。

我试图将最简单的重试方案归结为可能.执行时会忽略重试.

Application.java:

@SpringBootApplication
@EnableRetry
public class Application extends SpringBootServletInitializer {
//...

这是在Service类中:

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();
}    

Gary Russell.. 10

@Retryable方法的内部调用(在同一个类中)不可重试; 从昨天开始看我的答案,这解释了原因.

此外,@Retryable方法必须是公开的.



1> Gary Russell..:

@Retryable方法的内部调用(在同一个类中)不可重试; 从昨天开始看我的答案,这解释了原因.

此外,@Retryable方法必须是公开的.

推荐阅读
携手相约幸福
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有