这里使用到的是spring2.5+Quartz-all-1.6.6.jar
方法一:
继承java.util.TimerTask。
public class Clock extends TimerTask{
@Override
public void run() {
System.out.println("clock!");
}
}
在spring配置文件:
5000
方法二:
使用到Quartz插件。
public class QuartzClock extends QuartzJobBean{
@Override
protected void executeInternal(JobExecutionContext arg0) throws JobExecutionException {
System.out.println("QuartzClock。。。");
}
}
spring配置:
com.sjg.Task.Test.QuartzClock
6000
6000
0/15 * * * * ?
方法三:
public class TaskServiceImpl {
public void synchronizeDb(){
System.out.println("Quartz的任务调度。。。");
}
}
spring相关配置:
synchronizeDb
0/15 * * * * ?
以上测试全部通过,这样就可以很自然的选择自己需要的方式开发实时调度任务了。
注:
cron表达式
一个cron表达式有至少6个(也可能是7个)由空格分隔的时间元素.从左到右,这些元素的定义如下:
1.秒(0-59)
2.分钟(0-59)
3.小时(0-23)
4.月份中的是期(1-31)
5.月份(1-12或SUN-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 每个工作日的工作时间
- 区间
* 通配符
? 你不想设置那个字段
阅读(1528) | 评论(1) | 转发(0) |