corn表达式例子:
<!-- 0 0/1 * * * ? -从0开始每分钟执行一次 -->
<!-- 59 59 23 * * ? -每天23:59分59秒执行 -->
继承Timer类的定时调度服务
定时器继承TimerTask覆写run方法
定时器类:
package spring.senssic.timetask;
import java.util.Date;
import java.util.TimerTask;
public class MyTask extends TimerTask {
@Override
public void run() {
System.out.println(new Date());
}
}
在springxml中配置定时器:
<!-- 自定义的timertask类 -->
<bean id="my" class="spring.senssic.timetask.MyTask"></bean>
<!-- 使用spring的ScheduledTimerTask注册定时器类 -->
<bean id="scheduledTask" class="org.springframework.scheduling.timer.ScheduledTimerTask">
<!--延迟0秒后启动 -->
<property name="delay" value="0"></property>
<!-- 每一秒调用一次 -->
<property name="period" value="1000"></property>
<!-- 刚才的自定义的timetask类 -->
<property name="timerTask" ref="my"></property>
</bean>
<!-- 定义timetask工厂把刚才的spring定时器加进去可以添加多个 -->
<bean id="timerFactory" class="org.springframework.scheduling.timer.TimerFactoryBean">
<property name="scheduledTimerTasks">
<list>
<ref bean="scheduledTask"/>
</list>
</property>
</bean>
在tomcat的web.xml中配置实例化spring容器,然后启动就行了
记得加入org.springframework.web-3.1.0.RELEASE.jar包
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:beans.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
然后启动就能看到效果
spring3对定时调度的新支持
需要xml文件配置
http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.0.xsd
所以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:tx="http://www.springframework.org/schema/tx"
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/task
http://www.springframework.org/schema/task/spring-task-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-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/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd">
java类:
package spring.senssic.timetask;
import java.util.Date;
public class STask {
public void dostring() {
System.out.println("定时任务:time--->" + new Date());
}
}
在xml中配置如下:
<bean id="taskjob" class="spring.senssic.timetask.STask"></bean>
<task:scheduled-tasks>
<task:scheduled ref="taskjob" method="dostring" cron="0 * * * * ?" fixed-delay="0" fixed-rate="1000"/><!--使用了cron表达式,结尾有介绍-->
</task:scheduled-tasks>
通过spring3.0的注解使用定时服务:
java类:
package spring.senssic.timetask;
import java.util.Date;
import org.springframework.scheduling.annotation.Scheduled;
public class STask {
@Scheduled(cron="0/1 * * * * ?")//cron表达式,立即执行,每个一秒执行一次,且三个参数只能写一个(不然报错)
public void dostring() {
System.out.println("定时任务:time--->" + new Date());
}
}
xml中配置如下:
<bean id="taskjob" class="spring.senssic.timetask.STask"></bean>
<task:annotation-driven mode="proxy" scheduler="myschedule"/>
<task:scheduler id="myschedule" pool-size="10"/>
使用Quartz任务调度
可以继承quartzjar包中的类,也可以不继承,下面介绍的是不继承的
需要用到的jar包
分为两种:
SimpleTriggerBean(可以周期性地执行Job)
CronTriggerBean(功能更为强大,能指定何时执行Job)
使用到的java类:
package spring.senssic.timetask;
import java.util.Date;
public class MyTask {
public void doAuth() {
System.out.println(new Date());
}
}
和
package spring.senssic.timetask;
import java.util.Date;
public class MyTask {
public void doAuth() {
System.out.println(new Date());
}
}
spring中的xml配置
<!-- spirng包装quartz任务 -->
<bean id="job1" class="spring.senssic.timetask.MyTask"> </bean>
<bean id="job2" class="spring.senssic.timetask.STask"></bean>
<!-- 包装任务调度Bean -->
<bean id="jobtask" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
<!-- 定义目标Bean -->
<property name="targetObject" ref="job1"/>
<!-- 定义目标Bean中的方法 -->
<property name="targetMethod" value="doAuth"/>
<!-- false,证明不执行并发任务 -->
<property name="concurrent" value="false"/>
</bean>
<bean id="jobtask2" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
<property name="targetObject" ref="job2"/>
<property name="targetMethod" value="dostring"/>
<property name="concurrent" value="false"/>
</bean>
<!-- 配置作业调度触发方式 -->
<bean id="repeatTrigger" class="org.springframework.scheduling.quartz.SimpleTriggerBean">
<property name="jobDetail" ref="jobtask"></property>
<property name="startDelay" value="0" /><!-- 调度工厂实例化后,经过0秒开始执行调度 -->
<property name="repeatInterval" value="2000" /><!-- 每2秒调度一次 -->
</bean>
<!-- 定时运行reportJob -->
<bean id="cronTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean">
<!-- 确定任务调度的目标任务 -->
<property name="jobDetail" ref="jobtask2" />
<!-- 立即执行每隔一秒执行一次 -->
<property name="cronExpression" value="0/1 * * * * ?" />
</bean>
<!-- 建立实际调度 -->
<bean id="scheduler" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
<!-- 指定调度使用的触发器列表 -->
<property name="triggers">
<list>
<ref bean="repeatTrigger" />
<ref bean="cronTrigger" />
</list>
</property>
</bean>
Cron 表达式
包括以下 7 个字段:
秒
分
小时
月内日期
月
周内日期
年(可选字段)
特殊字符
Cron 触发器利用一系列特殊字符,如下所示:
反斜线(/)字符表示增量值。例如,在秒字段中“5/15”代表从第 5 秒开始,每 15 秒一次。
问号(?)字符和字母 L 字符只有在月内日期和周内日期字段中可用。问号表示这个字段不包含具体值。所以,如果指定月内日期,可以在周内日期字段中插入“?”,表示周内日期值无关紧要。字母 L 字符是 last 的缩写。放在月内日期字段中,表示安排在当月最后一天执行。在周内日期字段中,如果“L”单独存在,就等于“7”,否则代表当月内周内日期的最后一个实例。所以“0L”表示安排在当月的最后一个星期日执行。
在月内日期字段中的字母(W)字符把执行安排在最靠近指定值的工作日。把“1W”放在月内日期字段中,表示把执行安排在当月的第一个工作日内。
井号(#)字符为给定月份指定具体的工作日实例。把“MON#2”放在周内日期字段中,表示把任务安排在当月的第二个星期一。
星号(*)字符是通配字符,表示该字段可以接受任何可能的值。
字段 允许值 允许的特殊字符
秒 0-59 , - * /
分 0-59 , - * /
小时 0-23 , - * /
日期 1-31 , - * ? / L W C
月份 1-12 或者 JAN-DEC , - * /
星期 1-7 或者 SUN-SAT , - * ? / L C #
年(可选) 留空, 1970-2099 , - * /
表达式意义
"0 0 12 * * ?" 每天中午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期间的每1分钟触发
"0 0/5 14 * * ?" 在每天下午2点到下午2:55期间的每5分钟触发
"0 0/5 14,18 * * ?" 在每天下午2点到2:55期间和下午6点到6:55期间的每5分钟触发
"0 0-5 14 * * ?" 在每天下午2点到下午2:05期间的每1分钟触发
"0 10,44 14 ? 3 WED" 每年三月的星期三的下午2:10和2: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触发
"0 15 10 ? * 6L 2002-2005" 2002年至2005年的每月的最后一个星期五上午10:15触发
"0 15 10 ? * 6#3" 每月的第三个星期五上午10:15触发
每天早上6点 0 6 * * *
每两个小时 0 */2 * * *
晚上11点到早上8点之间每两个小时,早上八点 0 23-7/2,8 * * *
每个月的4号和每个礼拜的礼拜一到礼拜三的早上11点 0 11 4 * 1-3
1月1日早上4点 0 4 1 1 *