web-dev-qa-db-ja.com

Spring @retryableを構成可能にするにはどうすればよいですか?

私はこのコードを持っています

@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 {

//ここにいくつかの実装}

@Valueを使用してmaxAttempts、遅延、および乗数を構成可能にする方法はありますか?または、注釈内のそのようなフィールドを構成可能にする他のアプローチはありますか?

12
Sabarish

現在は不可能です。プロパティをワイヤリングするには、文字列値を取るように注釈を変更する必要があり、注釈BeanポストプロセッサはプレースホルダやSpEL式を解決する必要があります。

代替案については this answer を参照してください。ただし、現在のところ、アノテーションを介して行うことはできません。

[〜#〜]編集[〜#〜]

<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は、再試行を適用するメソッドです。

2
Gary Russell

spring-retryバージョン1.2のリリースでは、それが可能です。 @RetryableはSPELを使用して構成できます。

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

詳細については、次を参照してください: https://github.com/spring-projects/spring-retry/blob/master/README.md

16
Satish

デフォルトを指定し、オプションでapplication.propertiesファイルでそれをオーバーライドする場合:

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

次のように、@Retryableアノテーションの代わりにRetryTemplate Beanを使用できます。

@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;
}

次に、このテンプレートのexecuteメソッドを使用します。

@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

ここで説明されているように、 https://stackoverflow.com/a/43144064

バージョン1.2では、特定のプロパティに式を使用する機能が導入されています。

したがって、次のようなものが必要です。

@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