quartz的核心概念
三步
job:做什么事,比如查询当前时间,定时清理图片
trigger:什么时候做
scheduler:什么时候做什么事
需要引入依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-quartz</artifactId>
</dependency>
SpringBoot 通过注解配置Quartz
再运行SpringBoot的启动类。?