5

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

}
4

2 回答 2

5

您的注释@EnableRetry位于错误的位置,而不是将其放在ActionService接口上,而应将其与基于 Spring Java 的@Configuration类一起放置,在此实例中与MyApp该类一起放置。通过此更改,重试逻辑应按预期工作。如果您对更多详细信息感兴趣,这是我写的一篇博客文章 - http://biju-allandsundry.blogspot.com/2014/12/spring-retry-ways-to-integrate-with.html

于 2015-07-22T05:30:59.020 回答
0

Biju 感谢您为此提供链接,它帮助我解决了很多问题。我唯一需要单独做的是我仍然必须在基于 Spring xml 的方法中添加“retryAdvice”作为 bean,还必须确保启用了上下文注释并且在类路径中可以使用 aspectj。在我在下面添加这些之后,我可以让它工作。

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

<context:annotation-config />
<aop:aspectj-autoproxy />
于 2016-06-22T18:43:41.577 回答