您好,登錄后才能下訂單哦!
小編給大家分享一下java中Timer定時(shí)器怎么用,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
定時(shí)計(jì)劃任務(wù)功能在Java中主要使用的就是Timer對(duì)象,它在內(nèi)部使用多線程的方式進(jìn)行處理,所以它和多線程技術(shù)還是有非常大的關(guān)聯(lián)的。在JDK中Timer類(lèi)主要負(fù)責(zé)計(jì)劃任務(wù)的功能,也就是在指定的時(shí)間開(kāi)始執(zhí)行某一個(gè)任務(wù),但封裝任務(wù)的類(lèi)卻是TimerTask類(lèi)。
我們使用timer的時(shí)候,一般有4種情況:
指定時(shí)間執(zhí)行
指定時(shí)間執(zhí)行后間隔指定時(shí)間重復(fù)執(zhí)行
啟動(dòng)任務(wù)之后多久執(zhí)行
啟動(dòng)任務(wù)后多久執(zhí)行,執(zhí)行之后指定間隔多久重復(fù)執(zhí)行
首先要通過(guò)繼承 TimerTask 類(lèi) 并實(shí)現(xiàn) run() 方法來(lái)自定義要執(zhí)行的任務(wù)(當(dāng)然也可以寫(xiě)成匿名內(nèi)部類(lèi)),
需要?jiǎng)?chuàng)建一個(gè)定時(shí)器(Timer類(lèi)對(duì)象),并通過(guò)Timer.schedule(TimerTask task,Date time) 方法執(zhí)行時(shí)間運(yùn)行任務(wù)
具體代碼如下:
package timerdemo; import java.util.Timer; import java.util.TimerTask; public class TimerDemo { public static void main(String[] args) { timerTest(); } public static void timerTest(){ //創(chuàng)建一個(gè)定時(shí)器 Timer timer = new Timer(); //schedule方法是執(zhí)行時(shí)間定時(shí)任務(wù)的方法 timer.schedule(new TimerTask() { //run方法就是具體需要定時(shí)執(zhí)行的任務(wù) @Override public void run() { System.out.println("timer測(cè)試!!!"); } }, 1000, 10000); } }
這里的 schedule方法有4個(gè),分別對(duì)應(yīng)上面說(shuō)的四種情況:
1.在jar工程下啟動(dòng)
把jar工程打成jar包,通過(guò)java -jar timer.jar 運(yùn)行
2.這web工程下啟動(dòng)
spring中我們可以通過(guò)實(shí)現(xiàn)接口ApplicationListener,并重寫(xiě)public void onApplicationEvent(ApplicationEvent event) {}可以在容器初始話的時(shí)候執(zhí)行這個(gè)方法
下面展示下web工程下每天00:00執(zhí)行任務(wù)的代碼:
@Component public class SystemInitListener implements ApplicationListener<ContextRefreshedEvent> { @Override public void onApplicationEvent(ContextRefreshedEvent event) { //創(chuàng)建定時(shí)器 Timer timer = new Timer(); Calendar calendar = Calendar.getInstance(); calendar.add(Calendar.DATE,1); calendar.set(calendar.get(Calendar.YEAR),calendar.get(Calendar.MONTH),calendar.get(Calendar.DATE),0,0,0); long timeInterval = 24 * 60 * 60 * 1000; timer.schedule(new TimerTask() { @Override public void run() { // 每天00:00需要做的事情 } }, calendar.getTime(), timeInterval);
總結(jié)一下我使用過(guò)的4種類(lèi)型的定時(shí)器:@Scheduled注解、quartz、new Timer().schedule、使用線程控制。
@Scheduled注解是最簡(jiǎn)單的方式,只需要啟用定時(shí)器,在方法上添加注解即可。
在spring配置中加入:
<!-- 啟用注解定時(shí)器 --> <task:annotation-driven />
在要具體的方法上加入注解@Scheduled
@Scheduled(cron = "0 0 * * * ? ") public void myTask(){ //定時(shí)任務(wù)...... }
quartz使用的是可配置的方式,將所有的定時(shí)器都配置再一個(gè)xml文件里面。
步驟如下:
1.創(chuàng)建一個(gè)spring的配置文件:spring-quartz.xml
2.定義工作任務(wù)的job
3.定義觸發(fā)器Trigger并與job綁定
4.定義調(diào)度器,并將Trigger注冊(cè)到scheduler
<bean id="myTask" class="cn.coolwind.MyTask"/> <!-- 1.定義工作任務(wù)job --> <bean id="testJob" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"> <!-- 定時(shí)器的類(lèi) --> <property name="targetObject" ref="myTask"></property> <!-- 需要定時(shí)執(zhí)行的方法 --> <property name="targetMethod" value="test"></property> <property name="concurrent" value="false"></property> </bean> <!-- 2.定義觸發(fā)器Trigger并與Job綁定 --> <bean id="testJobTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean"> <property name="jobDetail" ref="testJob"/> <!-- 根據(jù)需要設(shè)置定時(shí)執(zhí)行的時(shí)間 --> <property name="cronExpression" value="0 0/5 * * * ?" /> </bean> <!-- 3.定義調(diào)度器,并將trigger注冊(cè)進(jìn)去 --> <bean name="quartzScheduler" class="org.springframework.scheduling.quartz.SchedulerFactoryBean"> <property name="triggers"> <list> <ref local="testJobTrigger" /> </list> </property> </bean>
最后記得將xml寫(xiě)入web.xml里!
<init-param> <param-name>contextConfigLocation</param-name> <param-value> classpath:applicationContext.xml, classpath:log4j.xml, classpath:spring-quartz.xml </param-value> </init-param>
使用Timer的schedule,schedule有3個(gè)參數(shù):
schedule(TimerTask task, long delay, long period)
第一個(gè)為定時(shí)任務(wù),根據(jù)業(yè)務(wù)需要重寫(xiě)TimerTask的run方法即可;
第二個(gè)為延時(shí)啟動(dòng),單位毫秒;
第三個(gè)位多久運(yùn)行一次,單位毫秒;
new Timer().schedule(new TimerTask() { @Override public void run() { try { //do Something } catch (Exception e) { e.printStackTrace(); } } },0,5L * 60 * 1000);
使用線程來(lái)控制就更靈活一些,可以根據(jù)自己的需要判斷什么時(shí)候運(yùn)行,什么時(shí)候停止,這需要對(duì)java的線程有一定的了解。
public class TaskTest { private static final ExecutorService pool = Executors.newFixedThreadPool(5);// 線程池 public static final TaskTest me = new TaskTest(); public final int[] arr = new int[]{1, 2, 3, 4, 5, 6, 7, 8, 9}; public static void main(String[] args) { me.start(); } private void start() { pool.execute(new Runnable() { @Override public void run() { while (true) { try { for (int i = 0; i < arr.length; i++) { if (1 == arr[i]) { System.out.println("start!"); Thread.sleep(1*1000L); } if (6 == arr[i]) { System.out.println("stop!"); Thread.sleep(5*1000L); } System.out.println(arr[i]); if (9 == arr[i]) { System.out.println("end!"); Thread.sleep(5*1000L); } } } catch (InterruptedException e) { e.printStackTrace(); } } } }); } }
以上是“java中Timer定時(shí)器怎么用”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。