Springboot整合quartz产生错误及解决方案
程序员文章站
2022-05-06 23:05:11
1、spring boot整合quartz执行多个定时任务时报:org.quartz.objectalreadyexistsexception: unable to store job : 'grou...
1、spring boot整合quartz执行多个定时任务时报:
org.quartz.objectalreadyexistsexception: unable to store job : 'group1.job1', because one already exists with this identification.
定时任务虽然执行,但报了错误。第一次执行时没有报错误,第二次及之后执行前会报这个错误,
解决办法:
在初始化调度的时候clean一下: scheduler.clear();
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: JavaWeb实现学生信息管理系统(1)