3
@Retryable(value = Exception.class, maxAttempts = 3)
public Boolean sendMessageService(Request request){
   ...
}

注释中的maxAttempts 参数@Retryable是硬编码的。我可以从application.properties文件中读取该值吗?

就像是

@Retryable(value = Exception.class, maxAttempts = "${MAX_ATTEMPTS}")
4

2 回答 2

1

不; 使用注解时无法通过属性进行设置。

您可以RetryOperationsInterceptor手动连接 bean 并使用 Spring AOP 将其应用于您的方法...

编辑

<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您要应用重试的方法在哪里。

于 2016-06-27T11:41:18.730 回答
1

是的,您可以使用 maxAttemptsExpression:

@Retryable(value = {Exception.class}, maxAttemptsExpression = "#{${maxAttempts}}")

如果您还没有这样做,请在您的班级上方添加@EnableRetry。

于 2019-07-25T13:51:01.317 回答