Spring @Scheduled在使用注释时执行任务两次

前端之家收集整理的这篇文章主要介绍了Spring @Scheduled在使用注释时执行任务两次前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我使用Spring @Scheduled注释创建了任务,但由于某种原因,它执行任务两次.我的Spring Framework版本是3.0.2.

@Service
public class ReportService {

    @Scheduled(fixedDelay=1000 * 60 * 60* 24)
    @Transactional
    public void dailyReportTask()
    {
        ... code here ...
    }

}

这是我的XML:

最佳答案
它是由于上下文监听器而发生的

只需删除

从web.xml它应该工作.

原文链接:https://www.f2er.com/spring/432645.html

猜你在找的Spring相关文章