gpt4 book ai didi

java - 从 application.properties 文件中读取 spring @Retryable 的 maxAttempts

转载 作者:行者123 更新时间:2023-11-30 10:42:43 25 4
gpt4 key购买 nike

@Retryable(value = Exception.class, maxAttempts = 3)
public Boolean sendMessageService(Request request){
...
}
@Retryable 注释中的

maxAttempts 参数是硬编码的。我可以从 application.properties 文件中读取该值吗?

有点像

@Retryable(value = Exception.class, maxAttempts = "${MAX_ATTEMPTS}")

最佳答案

是的,您可以使用 maxAttemptsExpression:

@Retryable(value = {Exception.class}, maxAttemptsExpression = "#{${maxAttempts}}")

如果您还没有这样做,请在您的类(class)上方添加@EnableRetry。

关于java - 从 application.properties 文件中读取 spring @Retryable 的 maxAttempts,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38003086/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com