Очень простой тест 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, он запускается 1 раз. Почему?
Я установил maxAttempts = 2, он всегда запускается 3 раза. почему?
Я установил maxAttempts = 4, однако он запускается 8 раз. почему?
Я установил maxAttempts = 6, он запускается 11 раз. почему?