Java使用定时任务详解
定时任务
SpringBoot定时任务
默认单线程
1.开启注解
在Spring启动类上加上@EnableScheduling
2.设置执行时间:
-
使用fixRate:
在方法上加上@Scheduled(fixRate=30* 60 *1000)
fixRate=(小时* 分钟* 秒* 1000毫秒*)--只能实现指定间隔
-
使用Cron表达式:
在方法上加上@Scheduled(cron="0 0 9-22/4 * *")
@Scheduled(cron="秒 分 时 日 月 星期 年(可选)")
Cron表达式讲解:
在线生成cron表达式:https://cron.qqe2.com/
分隔符:
符号 作用 例子 , 列出所有值 如果在分钟中使用 5,8表示 分钟为5和8时触发 - 范围 在分钟中使用5-8表示分钟从5到8每分钟都会触发 * 该域的任意值 在分钟中使用*,表示对每分钟不做限制 / 起始时间时触发,然后每隔固定时间触发一次 在分钟中使用5/8,表示五分钟时触发一次,之后每隔8分钟触发一次 专有符号: --tips:除?外,Spring定时任务不支持其他转有符号
符号 | 作用 | 例子 |
---|---|---|
? | 只能用在月和星期互斥时 | |
L | 表示最后 ,只能出现在星期和月时 | 在周(周从星期日开始)中使用5L,表示最后一个星期四 |
W | 表示周一到周五(工作日)只能出现在月中,系统自动离最近的工作日开始时触发 | |
LW | L和W连用,表示某月最后一个工作日 | |
# | 用于确定的每个月的第几个星期几只能出现在周中 | 设定3#2表示某月的第二个星期二执行 |
C | 只能用在月和周中,需要关联日历 | 在月中使用5C 表示每个月的五号执行 |
使用异步多线程
- 开启异步注解
Spring启动类上加上@EnableScheduling的同时加上@EnableAsync
- 设置异步执行
在方法上加上@Scheduled(cron="0 0 9-22/4 * *")的同时加上@Async
Spring定时任务XML配置(注解形式几乎同上)
使用springTask: ----springTask为spring自带的
-
引用spring-context的依赖(使用springboot项目基本可省)
-
添加配置文件spring.xml,开启注解扫描
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:aop="http://www.springframework.org/schema/aop" xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:task="http://www.springframework.org/schema/task"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.1.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd
http://www.springframework.org/schema/task
http://www.springframework.org/schema/task/spring-task-3.1.xsd">
<context:component-scan base-package="com.code.xxx" />
</beans>
- 定义定时任务方法添加@Component--交给spring容器管理
public class Todo{
public void task1(){
System.out.println("task1开始")}
}
- 在spring.xml中配置:
<task:scheduled-tasks>
<!-- 每两秒执行一次-->
<task:scheduler ref="todo" method="task1" cron="0/2 * * * * ?"/>
</task:scheduled-tasks>
- 测试定时任务:
5.1获取springContext
ApplicationContext context=new ClassPathXmlApplication("spring.xml")
5.2. 获取指定的Bean对象
Todo todo1=(Todo)context.getBean("todo")
- 重要:在xml中开启定时任务驱动
<task:annotation-driven>