代码参考:
事件:按照如上配置之后,项目正常启动,可以添加Job,但是Job一直没有被execute
原因:springboot2.0之后与原生quartz包不兼容,必须使用spring-boot-starter-quartz包
删除pom配置:
org.quartz-scheduler quartz 2.2.3 复制代码 org.springframework spring-context-support
增加pom配置:
复制代码 org.springframework.boot spring-boot-starter-quartz