Spring整合TimerTask实现定时任务调度
程序员文章站
2024-03-08 19:26:52
一. 前言
最近在公司的项目中用到了定时任务, 本篇博文将会对timertask定时任务进行总结, 其实timertask在实际项目中用的不多,
因为它不能在指定...
一. 前言
最近在公司的项目中用到了定时任务, 本篇博文将会对timertask定时任务进行总结, 其实timertask在实际项目中用的不多,
因为它不能在指定时间运行, 只能让程序按照某一个频度运行.
二. timertask
jdk中timer是一个定时器类, 它可以为指定的定时任务进行配置.
jdk中timertask是一个定时任务类, 该类实现了runnable接口, 是一个抽象类, 我们可以继承这个类, 实现定时任务.
/** * 继承timertask实现定时任务 */ public class mytask extends timertask { @override public void run() { string currenttime = new simpledateformat("yyy-mm-dd hh:mm:ss").format(new date()); system.out.println(currenttime + " 定时任务正在执行..."); } public static void main(string[] args) { timer timer = new timer(); // 1秒钟执行一次的任务, 参数为: task, delay, peroid timer.schedule(new mytask(), 2000, 1000); } }
三. 整合spring
两个核心类: scheduledtimertask, timerfactorybean
scheduledtimertask类是对timertask的包装器实现, 通过该类可以为这个任务定义触发器信息.
timerfactorybean类可以让spring使用配置创建触发器, 并为一组指定的scheduledtimertask bean自动创建timer实例.
1. 引入jar包: spring.jar, commons-logging.jar
2. 定时调度业务类:
/** * 定时调度业务类 */ public class taskservice extends timertask { private int count = 1; public void run() { system.out.println("第" + count + "次执行定时任务"); count++; } }
3. 核心配置:
<?xml version="1.0" encoding="utf-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xsi:schemalocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"> <bean id="taskservice" class="com.zdp.service.taskservice"></bean> <bean id="scheduledtimertask" class="org.springframework.scheduling.timer.scheduledtimertask"> <property name="timertask" ref="taskservice" /> <!-- 每隔一天执行一次配置: 24*60*60*1000 --> <!-- 每1秒钟程序执行一次 --> <property name="period" value="1000" /> <!-- 程序启动4秒钟后开始执行 --> <property name="delay" value="4000" /> </bean> <bean id="timerfactorybean" class="org.springframework.scheduling.timer.timerfactorybean"> <property name="scheduledtimertasks"> <list> <ref bean="scheduledtimertask" /> </list> </property> </bean> </beans>
4. 测试类:
public class main { public static void main(string[] args) { // 加载spring配置文件 applicationcontext context = new classpathxmlapplicationcontext("applicationcontext.xml"); system.out.println("<<-------- 启动定时任务 -------- >>"); bufferedreader reader = new bufferedreader(new inputstreamreader(system.in)); while (true) { try { if (reader.readline().equals("quit")) { system.out.println("<<-------- 退出定时任务 -------- >>"); system.exit(0); } } catch (ioexception e) { throw new runtimeexception("error happens...", e); } } } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: ThinkPHP中create()方法自动验证实例
下一篇: 基于java解析JSON的三种方式详解