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

いいえ; 注釈を使用する場合、プロパティを介して設定することはできません。

Bean を手動で接続し、RetryOperationsInterceptorSpring 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 に答える