web-dev-qa-db-fra.com

Comment puis-je rendre spring @retryable configurable?

J'ai ce morceau de code

@Retryable(maxAttempts = 3, stateful = true, include = ServiceUnavailableException.class,
        exclude = URISyntaxException.class, backoff = @Backoff(delay = 1000, multiplier = 2) )
public void testThatService(String serviceAccountId)
        throws ServiceUnavailableException, URISyntaxException {

// quelques implémentations ici }

Est-il possible de configurer les maxAttempts, les délais et les multiplicateurs en utilisant @Value? Ou existe-t-il une autre approche pour rendre de tels champs dans les annotations configurables?

8
Sabarish

Ce n'est pas possible actuellement; pour lier les propriétés, l'annotation devrait être modifiée pour prendre des valeurs String et le post-processeur du bean annotation devrait résoudre les espaces réservés et/ou les expressions SpEL.

Voir cette réponse pour une alternative, mais cela ne peut actuellement pas être fait via l'annotation.

MODIFIER

<bean id="retryAdvice" class="org.springframework.retry.interceptor.RetryOperationsInterceptor">
    <property name="retryOperations">
        <bean class="org.springframework.retry.support.RetryTemplate">
            <property name="retryPolicy">
                <bean class="org.springframework.retry.policy.SimpleRetryPolicy">
                    <property name="maxAttempts" value="${max.attempts}" />
                </bean>
            </property>
            <property name="backOffPolicy">
                <bean class="org.springframework.retry.backoff.ExponentialBackOffPolicy">
                    <property name="initialInterval" value="${delay}" />
                    <property name="multiplier" value="${multiplier}" />
                </bean>
            </property>
        </bean>
    </property>
</bean>

<aop:config>
    <aop:pointcut id="retries"
        expression="execution(* org..EchoService.test(..))" />
    <aop:advisor pointcut-ref="retries" advice-ref="retryAdvice"
        order="-1" />
</aop:config>

EchoService.test est la méthode à laquelle vous souhaitez appliquer des tentatives.

2
Gary Russell

avec la sortie de Spring-retry version 1.2, c'est possible. @Retryable peut être configuré avec SPEL. 

@Retryable(
    value = { SomeException.class,AnotherException.class },
    maxAttemptsExpression = "#{@myBean.getMyProperties('retryCount')}",
    backoff = @Backoff(delayExpression = "#{@myBean.getMyProperties('retryInitalInterval')}"))
public void doJob(){
    //your code here
}

Pour plus de détails, consultez: https://github.com/spring-projects/spring-retry/blob/master/README.md

13
Satish

Si vous souhaitez fournir un paramètre par défaut, puis le remplacer éventuellement dans votre fichier application.properties:

@Retryable(maxAttemptsExpression = "#{${my.max.attempts:10}}")
public void myRetryableMethod() {
    // ...
}
3
whistling_marmot

Vous pouvez utiliser le bean RetryTemplate au lieu de l'annotation @Retryable comme ceci:

@Value("${retry.max-attempts}")
private int maxAttempts;
@Value("${retry.delay}")
private long delay;

@Bean
public RetryTemplate retryTemplate() {
    SimpleRetryPolicy retryPolicy = new SimpleRetryPolicy();
    retryPolicy.setMaxAttempts(maxAttempts);

    FixedBackOffPolicy backOffPolicy = new FixedBackOffPolicy();
    backOffPolicy.setBackOffPeriod(delay);

    RetryTemplate template = new RetryTemplate();
    template.setRetryPolicy(retryPolicy);
    template.setBackOffPolicy(backOffPolicy);
    return template;
}

Et utilisez ensuite la méthode execute de ce modèle:

@Autowired
private RetryTemplate retryTemplate;

public ResponseVo doSomething(final Object data) {
    RetryCallback<ResponseVo, SomeException> retryCallback = new RetryCallback<ResponseVo, SomeException>() {
        @Override
        public ResponseVo doWithRetry(RetryContext context) throws SomeException {
             // do the business
             return responseVo;
        }
    };
    return retryTemplate.execute(retryCallback);
}
2
Sean Liang

Comme il est expliqué ici: https://stackoverflow.com/a/43144064

La version 1.2 introduit la possibilité d'utiliser des expressions pour certaines propriétés.

Donc vous avez besoin de quelque chose comme ça:

@Retryable(maxAttempts = 3, stateful = true, include = ServiceUnavailableException.class,
        exclude = URISyntaxException.class, backoff = @Backoff(delayExpression = "#{${your.delay}}" , multiplier = 2) )
public void testThatService(String serviceAccountId)
        throws ServiceUnavailableException, URISyntaxException {
1
florbonansea