一. 前言
最近在公司的專案中用到了定時任務, 本篇博文將會對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
edTimerTask: ScheduledTimerTask, TimerFactoryBean
TimerFactoryBean類別可以讓Spring使用配置建立觸發器, 並為一組指定的ScheduledTimerTask bean 自動建立Timer實例.
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); } } } }
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望多多支援PHP中文網。
🎜更多Spring整合TimerTask實現定時任務調度相關文章請關注PHP中文網! 🎜