为什么Spring @Retryable不提供重试?

时间:2015-06-26 21:16:23

标签: java spring spring-retry

我只使用@Retryable注释设置最简单的Spring应用程序。

@Service
public class MyRestService {
    @Autowired
    private RestTemplate restTemplate;

    @Retryable(Exception.class)
    public void runRest() {
        ResponseEntity<String> response = restTemplate.getForEntity(
            "https://dat.sparkfun.com/streams/dZ4EVmE8yGCRGx5XRX1W.json",
            String.class);
    }

    @Recover
    public void recover(Exception e) {
        System.out.println("Recover=" + e);
    }
}

通过Spring文档(https://github.com/spring-projects/spring-retry),runRest方法应该运行三次,因为它抛出了Exception(特别是org.springframework.web.client.ResourceAccessException)。但是,我没有观察到任何重试。使用@Atryable的ResourceAccessException作为参数没有帮助。

2 个答案:

答案 0 :(得分:3)

对不起,很容易回答。我需要在main类中使用main方法指定@EnableRetry。

@Configuration
@EnableRetry
public class Application {

答案 1 :(得分:0)

您也可以使用基于XML的配置。

<aop:config>
<aop:pointcut id="retryable" expression="execution(* it..*class.method(..))" />
<aop:advisor pointcut-ref="retryable" advice-ref="retryAdvice" order="-1"/>