Spring定时任务
一、基于xml方式定时任务的配置
1、定时任务命名空间的添加
xmlns:task="http://www.springframework.org/schema/task" |
http://www.springframework.org/schema/task |
2、定时任务方法代码
package com.shsxt.task;
import org.springframework.stereotype.Component;
import java.text.SimpleDateFormat;
import java.util.Date;
@Component
public class TaskSchedule {
public void job1(){
System.out.println("任务1"+new SimpleDateFormat("yyyy-MM-dd hh:mm:ss").format(new Date()));
}
public void job2(){
System.out.println("任务1"+new SimpleDateFormat("yyyy-MM-dd hh:mm:ss").format(new Date()));
}
}
3、定时任务配置
<!-- 配置定时任务 -->
<task:scheduled-tasks>
<task:scheduled ref="taskSchedule" method="job1" cron="0/2 * * * * ?"/>
<task:scheduled ref="taskSchedule" method="job2" cron="0/5 * * * * ?"/>
</task:scheduled-tasks>
<!-- 配置定时任务 -->
<task:scheduled-tasks>
<task:scheduled ref="taskSchedule" method="job1" cron="0/2 * * * * ?"/>
<task:scheduled ref="taskSchedule" method="job2" cron="0/5 * * * * ?"/>
</task:scheduled-tasks>
4、Bean.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:task="http://www.springframework.org/schema/task"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/task
http://www.springframework.org/schema/task/spring-task-3.0.xsd">
<!-- 开启aop代理 -->
<aop:aspectj-autoproxy/>
<!-- 启动包扫描 -->
<context:component-scan base-package="com.shsxt"/>
<!-- 配置定时任务 -->
<task:scheduled-tasks>
<task:scheduled ref="taskSchedule" method="job1" cron="0/2 * * * * ?"/>
<task:scheduled ref="taskSchedule" method="job2" cron="0/5 * * * * ?"/>
</task:scheduled-tasks>
</beans>
5、pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.shsxt</groupId>
<artifactId>spring10</artifactId>
<version>1.0-SNAPSHOT</version>
<name>spring10</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>4.3.2.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
<version>4.3.2.RELEASE</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.8.9</version>
</dependency>
</dependencies>
<build>
</build>
</project>
6、单元测试类
package com.shsxt.task;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import static org.junit.Assert.*;
public class TaskScheduleTest {
public static void main (String[] args){
new ClassPathXmlApplicationContext("spring.xml");
}
}
7、测试结果此处测试使用main函数进行测试,xml文件加载后,方法开始执行
基于注解方式定时任务的配置
1、在配置文件中添加命名空间
xmlns:task="http://www.springframework.org/schema/task"
http://www.springframework.org/schema/task
http://www.springframework.org/schema/task/spring-task-3.0.xsd
2、配置定时任务驱动
<!-- 定时任务注解驱动 -->
<task:annotation-driven />
3、任务代码
package com.shsxt.task;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
import java.text.SimpleDateFormat;
import java.util.Date;
@Component
public class TaskSchedule2 {
@Scheduled(cron = "0/2 * * * * ?")
public void job1(){
System.out.println("任务1-2"+new SimpleDateFormat("yyyy-MM-dd hh:mm:ss").format(new Date()));
}
@Scheduled(cron = "0/5 * * * * ?")
public void job2(){
System.out.println("任务2-2"+new SimpleDateFormat("yyyy-MM-dd hh:mm:ss").format(new Date()));
}
}
4、bean.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:task="http://www.springframework.org/schema/task"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/task
http://www.springframework.org/schema/task/spring-task-3.0.xsd">
<!-- 开启aop代理 -->
<aop:aspectj-autoproxy/>
<!-- 启动包扫描 -->
<context:component-scan base-package="com.shsxt"/>
<!-- 定时任务注解驱动 -->
<task:annotation-driven />
</beans>
5、pom.xml
pom.xml 配置与 xml方式配置相同
6、测试类
package com.shsxt.task;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import static org.junit.Assert.*;
public class TaskSchedule2Test {
public static void main (String[] args){
new ClassPathXmlApplicationContext("spring.xml");
}
}
-
Cron 表达式
关于cronExpression 表达式有至少6 个(也可能是7 个)由空格分隔的时间元素。从左至右,这些元素的定义如下:
1.秒(0–59)
2.分钟(0–59)
3.小时(0–23)
4.月份中的日期(1–31)
5.月份(1–12 或JAN–DEC)
6.星期中的日期(1–7 或SUN–SAT)
7.年份(1970–2099)
例如:
0 0 10,14,16 * * ?
每天上午10 点,下午2 点和下午4 点
0 0,15,30,45 * 1-10 * ?
每月前10 天每隔15 分钟
30 0 0 1 1 ? 2012
在2012 年1 月1 日午夜过30 秒时
0 0 8-5 ? * MON-FRI
每个工作日的工作时间
各个时间可用值如下:
秒0-59 , - * /
分0-59 , - * /
小时0-23 , - * /
日1-31 , - * ? / L W C
月1-12 or JAN-DEC , - * /
周几1-7 or SUN-SAT , - * ? / L C #
年(可选字段) empty, 1970-2099 , - * /
可用值详细分析如下:
“*”——字符可以用于所有字段,在“分”字段中设为"*"表示"每一分钟"的含义。
“?”——字符可以用在“日”和“周几”字段.它用来指定'不明确的值'.这在你需要指定这两个字段中的某一个值而不是另外一个的时候会被用到。在后面的例子中可以看到其含义。
“-”——字符被用来指定一个值的范围,比如在“小时”字段中设为"10-12"表示"10 点到12 点"。
“,”——字符指定数个值。比如在“周几”字段中设为"MON,WED,FRI"表示"the days Monday, Wednesday, and Friday"。
“/”——字符用来指定一个值的的增加幅度.比如在“秒”字段中设置为
"0/15"表示"第0, 15, 30,和45 秒"。而"5/15"则表示"第5, 20, 35,和50".
在'/'前加"*"字符相当于指定从0 秒开始.每个字段都有一系列可以开始或结束的数值。对于“秒”和“分”字段来说,其数值范围为0 到59,对于“小时”字段来说其为0 到23,对于“日”字段来说为0 到31,而对于“月”字段来说为1 到12。
"/"字段仅仅只是帮助你在允许的数值范围内从开始"第n"的值。
“L”——字符可用在“日”和“周几”这两个字段。它是"last"的缩写,但是在这两个字段中有不同的含义。例如,“日”字段中的"L"表示"一个月中的最后一天" ——对于一月就是31 号对于二月来说就是28 号(非闰年)。而在“周几”字段中,它简单的表示"7" or "SAT",但是如果在“周几”字段中使用时跟在某个数字之后,它表示"该月最后一个星期×" ——比如"6L"表示"该月最后一个周五"。当使用'L'选项时,指定确定的列表或者范围非常重要,否则你会被结果搞糊涂的。
“W”——可用于“日”字段。用来指定历给定日期最近的工作日(周一到周五)。比如你将“日”字段设为"15W",意为: "离该月15 号最近的工作日"。因此如果15 号为周六,触发器会在14 号即周五调用。如果15 号为周日,触发器会在16 号也就是周一触发。如果15 号为周二,那么当天就会触发。然而如果你将“日”字段设为"1W",而一号又是周六,触发器会于下周一也就是当月的3号触发,因为它不会越过当月的值的范围边界。'W'字符只能用于“日”字段的值为单独的一天而不是一系列值的时候。
“L”和“W”可以组合用于“日”字段表示为'LW',意为"该月最后一个工作日"。
“#”——字符可用于“周几”字段。该字符表示“该月第几个周×”,比如"6#3"表示该月第三个周五( 6 表示周五而"#3"该月第三个)。再比如:"2#1" =表示该月第一个周一而"4#5" =该月第五个周三。注意如果你指定"#5"该月没有第五个“周×”,该月是不会触发的。
“C”——字符可用于“日”和“周几”字段,它是"calendar"的缩写。它表示为基于相关的日历所计算出的值(如果有的话)。如果没有关联的日历,那它等同于包含全部日历。“日”字段值为"5C"表示"日历中的第一天或者5 号以后",“周几”字段值为"1C"则表示"日历中的第一天或者周日以后"。对于“月份”字段和“周几”字段来说合法的字符都不是大小写敏感的。
例子:
"0 0 12 * * ?"每天中午十二点触发
"0 15 10 ? * *"每天早上10:15 触发
"0 15 10 * * ?"每天早上10:15 触发
"0 15 10 * * ? *"每天早上10:15 触发
"0 15 10 * * ? 2005" 2005 年的每天早上10:15 触发
"0 * 14 * * ?"每天从下午2 点开始到2 点59 分每分钟一次触发
"0 0/5 14 * * ?"每天从下午2 点开始到2:55 分结束每5 分钟一次触发
"0 0/5 14,18 * * ?"每天的下午2 点至2:55 和6 点至6 点55 分两个时间段内每5 分钟一次触发
"0 0-5 14 * * ?"每天14:00 至14:05 每分钟一次触发
"0 10,44 14 ? 3 WED"三月的每周三的14:10 和14:44 触发
"0 15 10 ? * MON-FRI"每个周一、周二、周三、周四、周五的10:15 触发
"0 15 10 15 * ?"每月15 号的10:15 触发
"0 15 10 L * ?"每月的最后一天的10:15 触发
"0 15 10 ? * 6L"每月最后一个周五的10:15