Spring Boot 整合 Quartz 启动报错,提示:nested exception is org.quartz.SchedulerException: Jobs added with no trigger must be durable.
问题解决:
factoryBean.setDurability(true);
Quartz:nested exception is org.quartz.SchedulerException: Jobs added with no trigger must be durable.
原文:https://www.cnblogs.com/miaooooo/p/13236306.html