如何在 Spring Boot to Spring Retry 注释中注入配置属性?
How to inject config properties in Spring Boot to Spring Retry annotation?
在 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 Retry 注释?在下面的示例中,我想用配置属性的相应引用替换 maxAttempts 的值 10
和 backoff 值的 500L
。
@Retryable(maxAttempts=10, include=TimeoutException.class, backoff=@Backoff(value = 500L))
您可以使用如下所示的Spring EL来加载属性:
@Retryable(maxAttempts="${my.app.maxAttempts}",
include=TimeoutException.class,
backoff=@Backoff(value ="${my.app.backOffDelay}"))
从spring-retry-1.2.0开始,我们可以在@Retryable注解中使用可配置属性。
使用"maxAttemptsExpression",使用方法参考下面的代码,
@Retryable(maxAttemptsExpression = "#{${my.app.maxAttempts}}",
backoff = @Backoff(delayExpression = "#{${my.app. backOffDelay}}"))
如果您使用任何低于 1.2 的版本,它将无法工作。0.Also 您不需要任何可配置的 属性 类。
您还可以在表达式属性中使用现有的 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,它与您的情况一样包含重试相关属性。
在 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 Retry 注释?在下面的示例中,我想用配置属性的相应引用替换 maxAttempts 的值 10
和 backoff 值的 500L
。
@Retryable(maxAttempts=10, include=TimeoutException.class, backoff=@Backoff(value = 500L))
您可以使用如下所示的Spring EL来加载属性:
@Retryable(maxAttempts="${my.app.maxAttempts}",
include=TimeoutException.class,
backoff=@Backoff(value ="${my.app.backOffDelay}"))
从spring-retry-1.2.0开始,我们可以在@Retryable注解中使用可配置属性。
使用"maxAttemptsExpression",使用方法参考下面的代码,
@Retryable(maxAttemptsExpression = "#{${my.app.maxAttempts}}",
backoff = @Backoff(delayExpression = "#{${my.app. backOffDelay}}"))
如果您使用任何低于 1.2 的版本,它将无法工作。0.Also 您不需要任何可配置的 属性 类。
您还可以在表达式属性中使用现有的 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,它与您的情况一样包含重试相关属性。