Spring 重试 maxAttempts 不正常
Spring Retry maxAttempts does not behave
一个非常简单的 HelloWorld 测试
@Log4j2
@Service
@EnableRetry
@EnableScheduling
public class MyBeanImpl {
@Scheduled(cron = "0/2 * * * * ? ")
@Retryable(value = {RuntimeException.class}, maxAttempts = 4, backoff = @Backoff(delay = 10000))
public void sched() {
log.info("Foo sched a = {}", a++);
throw new RuntimeException("Foo");
}
}
@Recover
public void recover(RuntimeException e) {
//.....
}
// Junit Class is here , For Simple POC test, I dont use Interface class, just use Implementation class
@RunWith(SpringRunner.class)
@SpringBootTest
@Log4j2
@ContextConfiguration
public class MyBeanImplTest {
@Autowired
MyBeanImpl _myBean;
private String input = "HelloWorld";
@Test
public void sched() {
_myBean.sched();
}
问题:
我设置 maxAttempts = 1,它 运行s 1 次。为什么?
我设置 maxAttempts = 2,它总是 运行 3 次。为什么?
我设置了 maxAttempts = 4,但是它 运行s 8 次。为什么?
我设置 maxAttempts = 6,它 运行s 11 次。为什么?
可能是因为它被调度以及被测试用例调用。
查看 INFO 日志中的线程名称。
一个非常简单的 HelloWorld 测试
@Log4j2
@Service
@EnableRetry
@EnableScheduling
public class MyBeanImpl {
@Scheduled(cron = "0/2 * * * * ? ")
@Retryable(value = {RuntimeException.class}, maxAttempts = 4, backoff = @Backoff(delay = 10000))
public void sched() {
log.info("Foo sched a = {}", a++);
throw new RuntimeException("Foo");
}
}
@Recover
public void recover(RuntimeException e) {
//.....
}
// Junit Class is here , For Simple POC test, I dont use Interface class, just use Implementation class
@RunWith(SpringRunner.class)
@SpringBootTest
@Log4j2
@ContextConfiguration
public class MyBeanImplTest {
@Autowired
MyBeanImpl _myBean;
private String input = "HelloWorld";
@Test
public void sched() {
_myBean.sched();
}
问题:
我设置 maxAttempts = 1,它 运行s 1 次。为什么?
我设置 maxAttempts = 2,它总是 运行 3 次。为什么?
我设置了 maxAttempts = 4,但是它 运行s 8 次。为什么?
我设置 maxAttempts = 6,它 运行s 11 次。为什么?
可能是因为它被调度以及被测试用例调用。
查看 INFO 日志中的线程名称。