gpt4 book ai didi

java - 使用默认值参数化 Spring @Scheduled

转载 作者:行者123 更新时间:2023-12-02 12:25:28 25 4
gpt4 key购买 nike

我需要使用属性文件中的值(如果存在)参数化 @Scheduled 方法,如果不存在,则使用默认值。

我们可以通过以下方式从配置文件属性进行参数化:

@Scheduled(cron = "${my.task.cron-exec-expr}")
public void scheduledTask() {
// do something
}

但是如果该属性不存在,我们将遇到运行时异常。

我尝试使用具有默认值的@ConfigurationProperties bean,但没有成功:

@Component
@ConfigurationProperties(prefix = "my.task")
public class MyTaskProperties {

private String cronExecExpr = "*/5 * * * * *";

// getter and setter
}

如何避免这种情况并传递默认值?

最佳答案

您可以在占位符中添加默认值,如下所示:

@Scheduled(cron = "${my.task.cron-exec-expr:*/5 * * * * *}")

关于java - 使用默认值参数化 Spring @Scheduled,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39248256/

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