在spring启动应用程序中,我在yaml文件中定义了一些配置属性,如下所示。
my.app.maxAttempts = 10
my.app.backOffDelay = 500L
一个示例bean
@ConfigurationProperties(prefix = "my.app")
public class ConfigProperties {
private int maxAttempts;
private long backOffDelay;
public int getMaxAttempts() {
return maxAttempts;
}
public void setMaxAttempts(int maxAttempts) {
this.maxAttempts = maxAttempts;
}
public void setBackOffDelay(long backOffDelay) {
this.backOffDelay = backOffDelay;
}
public long getBackOffDelay() {
return backOffDelay;
}
如何将my.app.maxAttempts
和my.app.backOffdelay
的值注入Spring重试注释?在下面的示例中,我想将maxAttempts的值10
和后退值的500L
替换为配置属性的相应引用。
@Retryable(maxAttempts=10, include=TimeoutException.class, backoff=@Backoff(value = 500L))
答案 0 :(得分:14)
从spring-retry-1.2.0开始,我们可以在@Retryable注释中使用可配置属性。
使用“maxAttemptsExpression”,请参阅以下代码以了解用法,
@Retryable(maxAttemptsExpression = "#{${my.app.maxAttempts}}",
backoff = @Backoff(delayExpression = "#{${my.app. backOffDelay}}"))
如果使用任何小于1.2.0的版本,它将无法工作。此外,您不需要任何可配置的属性类。
答案 1 :(得分:4)
您还可以在表达式属性中使用现有bean。
@Retryable(include = RuntimeException.class,
maxAttemptsExpression = "#{@retryProperties.getMaxAttempts()}",
backoff = @Backoff(delayExpression = "#{@retryProperties.getBackOffInitialInterval()}",
maxDelayExpression = "#{@retryProperties.getBackOffMaxInterval" + "()}",
multiplierExpression = "#{@retryProperties.getBackOffIntervalMultiplier()}"))
String perform();
@Recover
String recover(RuntimeException exception);
,其中
retryProperties
是您的bean,它保存与您的情况相关的重试相关属性。
答案 2 :(得分:3)
您可以使用如下所示的Spring EL加载属性:
@Retryable(maxAttempts="${my.app.maxAttempts}",
include=TimeoutException.class,
backoff=@Backoff(value ="${my.app.backOffDelay}"))