标签:定时任务 cost spring lin -- test com sts 连接
使用@Scheduled注解实现
1、在启动类上加上@EnableScheduling 开启定时任务
2、新建一个任务类,在方法上添加@Scheduled注解
@Component
public class CostStateTask {
@Scheduled(cron="0 19 9 * * ?")
public void test(){
System.out.println("我是定时任务");
}
}
解析:@Scheduled注解有多种使用方式
常用的是
1、fixedRate(5000)-------------------5000毫秒执行一次
2、cron="0 19 9 * * ?" -----------------每天9点19分执行一次
其中
一个cron表达式有多个
按顺序依次为
至于其他的时间表达式,可阅读下面的连接
参考:http://www.cnblogs.com/eoooxy/p/7099320.html
标签:定时任务 cost spring lin -- test com sts 连接
原文地址:https://www.cnblogs.com/memoa/p/10314025.html