如何在Spring Boot中注入配置属性到Spring重试注释?

2022-09-02 03:13:28

在弹簧引导应用程序中,我在yaml文件中定义了一些配置属性,如下所示。

my.app.maxAttempts = 10
my.app.backOffDelay = 500L

还有一个示例豆

@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;
  }

如何将 和 的值注入 Spring 重试注释?在下面的示例中,我想将 maxAttempts 的值和回退值的值替换为配置属性的相应引用。my.app.maxAttemptsmy.app.backOffdelay10500L

@Retryable(maxAttempts=10, include=TimeoutException.class, backoff=@Backoff(value = 500L))

答案 1

spring-retry-1.2.0 开始,我们可以在注释@Retryable使用可配置的属性。

使用“maxAttemptsExpression”,请参阅以下代码进行用法,

 @Retryable(maxAttemptsExpression = "#{${my.app.maxAttempts}}",
 backoff = @Backoff(delayExpression = "#{${my.app. backOffDelay}}"))

如果您使用任何低于1.2.0的版本,它将不起作用。此外,您不需要任何可配置的属性类。


答案 2

您还可以在表达式属性中使用现有 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);

哪里

重试属性

是您的 Bean,它保存重试相关属性,就像您的情况一样。


推荐