2

我正在尝试通过在我的(spring boot gradle 插件)应用程序中添加重试逻辑@Retryable

到目前为止我做了什么:

在类路径中添加了最新的 starter aop:

classpath(group: 'org.springframework.boot', name: 'spring-boot-starter-aop', version: '1.4.0.RELEASE')

重试类:

@Component
@EnableRetry
public class TestRetry {
    @Retryable(maxAttempts = 3, backoff = @Backoff(delay = 2000))
    public void retryMethod() {
        throw new RunTimeException("retry exception");
    }
}

测试逻辑:

@Configuration
@EnableRetry
public class CallRetryClass {
    public void callRetryMethod() {
        TestRetry testRetry = new TestRetry();
        testRetry.retryMethod();
    }
}

但是重试逻辑不起作用。有人有什么建议吗?

4

1 回答 1

0

您需要使用 spring-managed beanTestRetry而不是构建自己的对象。CallRetryClass应该看起来像:

@Configuration
@EnableRetry
public class CallRetryClass {

    @Autowired
    private TestRetry testRetry;

    public void callRetryMethod() {
        testRetry.retryMethod();
    }
}
于 2017-03-14T12:18:46.767 回答