@Retryable 在 Spring 引导应用程序中由集成测试触发时不重试

@Retryable not making retries when triggered by Integration tests In A Spring Boot Application

我在 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 界面上你应该把它放在 Spring Java 基础上 @Configuration class,在本例中为 MyApp class。通过此更改,重试逻辑应按预期工作。如果您对更多详细信息感兴趣,这是我写的博客 post - http://biju-allandsundry.blogspot.com/2014/12/spring-retry-ways-to-integrate-with.html

Biju 谢谢你为此发一个link,帮我解决了很多问题。我必须单独做的唯一一件事是我仍然必须在基于 spring xml 的方法中添加 'retryAdvice' 作为 bean,还必须确保我启用了上下文注释并且 aspectj 是在类路径中可用。在我添加下面这些之后,我可以让它工作了。

    <bean id="retryAdvice"
    class="org.springframework.retry.interceptor.RetryOperationsInterceptor">
</bean>

<context:annotation-config />
<aop:aspectj-autoproxy />