温故知新 定时器任务调用
在springboot框架中使用
1,添加依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-quartz</artifactId>
</dependency>
2,在使用的类上添加注解(配置文件注解)
@Component
@EnableScheduling
3,于方法头上添加注解设置定时时间 (下面是设置每隔十秒执行一次该方法)
@Scheduled(cron = "*/10 * * * * ?")
具体见实例:
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
@Component
@EnableScheduling
public class DemoTest {
@Scheduled(cron = "*/5 * * * * ?")
public void pint() {
System.out.println("fire .......开炮。。。。");
}
}
主启动类运行成功后,运行单元测试;