在Spring Boot应用程序中,我在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
的值注入(inject)Spring Retry批注?在下面的示例中,我想用配置属性的相应引用替换maxAttempts的10
值和退避值的500L
。@Retryable(maxAttempts=10, include=TimeoutException.class, backoff=@Backoff(value = 500L))
最佳答案
从spring-retry-1.2.0开始,我们可以在@Retryable批注中使用可配置的属性。
使用“maxAttemptsExpression”,请引用以下代码以进行使用,
@Retryable(maxAttemptsExpression = "#{${my.app.maxAttempts}}",
backoff = @Backoff(delayExpression = "#{${my.app. backOffDelay}}"))
如果使用低于1.2.0的任何版本,它将不起作用。此外,您不需要任何可配置的属性类。