gpt4 book ai didi

java - @Retryable 在 Spring Boot 应用程序中由集成测试触发时不重试

转载 作者:搜寻专家 更新时间:2023-10-31 20:01:23 24 4
gpt4 key购买 nike

我在 SpringBoot 应用程序的服务中有一个简单的方法。我使用@Retryable 为该方法设置了重试机制。
我正在尝试对服务中的方法进行集成测试,并且当该方法抛出异常时不会发生重试。该方法只执行一次。

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();

}

最佳答案

你的注解 @EnableRetry 放在了错误的地方,而不是把它放在 ActionService 接口(interface)上你应该把它放在一个基于 Spring Java 的 @Configuration 类,在本例中为 MyApp 类。通过此更改,重试逻辑应按预期工作。如果您对更多详细信息感兴趣,这是我写的一篇博客文章 - http://biju-allandsundry.blogspot.com/2014/12/spring-retry-ways-to-integrate-with.html

关于java - @Retryable 在 Spring Boot 应用程序中由集成测试触发时不重试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31554338/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com