spring @Scheduled with cron无法解析属性

前端之家收集整理的这篇文章主要介绍了spring @Scheduled with cron无法解析属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在使用spring框架v4.1.7并且在调度cron任务时遇到问题,我想在属性文件中定义cron参数.

我的java代码

@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

猜你在找的Spring相关文章