我正在尝试通过在我的(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();
}
}
但是重试逻辑不起作用。有人有什么建议吗?