SpringBoot アプリケーションの Service に簡単なメソッドがあります。@Retryable を使用して、そのメソッドの再試行メカニズムをセットアップしました。
サービス内のメソッドの統合テストを試みていますが、メソッドが例外をスローしたときに再試行が行われません。メソッドは 1 回だけ実行されます。
public interface ActionService {
@Retryable(maxAttempts = 3, backoff = @Backoff(delay = 2000))
public void perform() throws Exception;
}
@Service
public class ActionServiceImpl implements ActionService {
@Override
public void perform() throws Exception() {
throw new Exception();
}
}
@SpringBootApplication
@Import(RetryConfig.class)
public class MyApp {
public static void main(String[] args) throws Exception {
SpringApplication.run(MyApp.class, args);
}
}
@Configuration
@EnableRetry
public class RetryConfig {
@Bean
public ActionService actionService() { return new ActionServiceImpl(); }
}
@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration( classes= {MyApp.class})
@IntegrationTest({"server.port:0", "management.port:0"})
public class MyAppIntegrationTest {
@Autowired
private ActionService actionService;
public void testAction() {
actionService.perform();
}