方法一
1)在启动类上添加注解@EnableScheduling开启定时器总开关。
@SpringBootApplication
@EnableScheduling
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
2)给要定时执行的方法上添加注解@Scheduled(cron = "0 0 0 * * * ")
下面已经成功创建了一个每隔两秒查询一次用户信息的定时器,启动项目后控制台就会两秒打印一次用户信息,cron参数是设置执行时间的。
@Component
public class mytimer {
@Autowired
SysUserService sysUserService;
@Scheduled(cron = "0/2 * * * * *")
public void runTimer() {
//调用userService方法查询用户id为200的用户信息,并输出
System.out.println(sysUserService.getById(200));
}
}
注意:我这里是自己新建了一个定时器类,所以需要加注解@Component,可以让spring扫描到他。
方法二
- 直接在定时器类上添加@Configuration、@EnableScheduling注解,标注这个类是配置文件,并开启定时开关;
- 给要定时执行方法上添加@Scheduled(cron = "0 0 0 * * * ")
@Configuration //证明这个类是一个配置文件
@EnableScheduling //启用定时器
public class mytimer {
@Autowired
SysUserService sysUserService;
@Scheduled(cron = "0/2 * * * * *")
public void runTimer() {
//调用userService方法查询用户id为200的用户信息,并输出
System.out.println(sysUserService.getById(200));
}
}
其实两个方法和都差不多,第一种方式是将定时器开关加在了启动类上,而第二种方式是将开关加在一个类上,然后将这个类声明成配置文件。最后在给某个方法加 @Scheduled注解,用cron 属性设置启动时间。
cron表达式
格式: cron = [秒] [分] [小时] [日] [月] [周] [年]
序号 | 说明 | 允许填写的值 | 允许的通配符 |
---|---|---|---|
1 | 秒 | 0-59, | - * / |
2 | 分 | 0-59, | - * / |
3 | 小时 | 0-23, | - * / |
4 | 日 | 1-31 | - * ? / L W |
5 | 月 | 1-12 or JAN-DEC | ,- * / |
6 | 周 | 1-7 or SUN-SAT | ,- * ? / L # |
7 | 年 | empty 或 1970-2099 | ,- * / |
注意:最后一位 年 可不填,其他位都必填。
通配符 | 说明 |
---|---|
* | 表示所有值 ,如:秒那为是 * ,代表每一秒都会执行 |
? | 表示不指定值 ,如: |
- | 表示区间,如:小时位是8-10,代表小时为8,9,10都会执行 |
, | 表示指定多个值,如: 如小时为8,9,10时运行 |
L | 表示最后的意思,如:如秒是L代表每一分最后一秒运行 |
W | 表示离指定日期的最近那个工作日,如:15W代表离15号最近的一个工作日运行 |
# | 表示第几个,如:6#1 代表六月的第一周执行 |
如:
cron = 0 0 1 * * * 每天凌晨一点触发