将Quartz的JOBDetail,Trigger保持到数据库的时候发现,系统报错 The job (DEFAULT.jobDetail) referenced by the trigger does not exist经过测试发现,在不使用hibernate的时候只有spring的测试环境情况下一切正常.而放到工作环境的时候就发生错误. 因此怀疑是datasource的问题.查spring Quartz论坛上发现果然是这个问题.将quartz的datasource分开独立就全部解决了.其实也可…
1.Quartz 是用来完成任务调度的. 2.Quartz 的三个核心概念:调度器.任务.触发器. (1)Job:通过实现该接口来定义需要执行的任务. public interface Job { /** * Called by the <code>{@link Scheduler}</code> when a <code>{@link Trigger}</code> fires that is associated with the <code>…