我正在使用spring框架v4.1.7并且在调度cron任务时遇到问题,我想在属性文件中定义cron参数.
@Scheduled(cron = "${invoice.export.cron}")
private void scheduledExport() {
// ... the code to execute ...
}
在我的属性文件中我有invoice.export.cron:0 0 7 * * MON-FRI?
为了启用调度我在我的主配置类上有@EnableScheduling.
我尝试调试这个问题,发现应该从属性占位符here解析cron表达式.在调用resolveStringValue后,我将this位置带入Abstractbeanfactory.而且据我所知,这是问题所在. this.embeddedValueResolvers列表为空…因此它不解析我传递给@Scheduled(cron)的属性.
任何人都有一个想法,如果我做错了什么或错过了什么?
提前致谢! 原文链接:https://www.f2er.com/spring/432728.html