SpringBoot集成Quartz
定时任务Quartz : 就是在指定的时间执行一次或者循环执行,在项目的开发中有时候会需要的, 还是很有用的.
SpringBoot内置的定时
- 添加依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
- 启动类上添加注解
@SpringBootApplication
@EnableScheduling
public class BackApplication {
public static void main(String[] args) {
SpringApplication.run(BackApplication.class, args);
}`
- 使用
@Service
public class GoodsService {
@Scheduled(cron = "0 53 13 * * ?")
public void testQuarz(){
System.out.println("我们来测试");
}
}