如何正確的使用spring定時(shí)器?很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來(lái)學(xué)習(xí)下,希望你能有所收獲。
公司主營(yíng)業(yè)務(wù):成都做網(wǎng)站、成都網(wǎng)站建設(shè)、移動(dòng)網(wǎng)站開(kāi)發(fā)等業(yè)務(wù)。幫助企業(yè)客戶真正實(shí)現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競(jìng)爭(zhēng)能力。創(chuàng)新互聯(lián)是一支青春激揚(yáng)、勤奮敬業(yè)、活力青春激揚(yáng)、勤奮敬業(yè)、活力澎湃、和諧高效的團(tuán)隊(duì)。公司秉承以“開(kāi)放、自由、嚴(yán)謹(jǐn)、自律”為核心的企業(yè)文化,感謝他們對(duì)我們的高要求,感謝他們從不同領(lǐng)域給我們帶來(lái)的挑戰(zhàn),讓我們激情的團(tuán)隊(duì)有機(jī)會(huì)用頭腦與智慧不斷的給客戶帶來(lái)驚喜。創(chuàng)新互聯(lián)推出新華免費(fèi)做網(wǎng)站回饋大家。
第一種,使用XML配置的方法
前期工作,配置spring的開(kāi)發(fā)環(huán)境(這里用到了spring的web應(yīng)用包,需要導(dǎo)入)
首先創(chuàng)建定時(shí)器的任務(wù)類,定時(shí)器要做什么工作,就在這里寫什么方法。
package org.time; import java.util.TimerTask; public class MainTask extends TimerTask{ @Override public void run() { System.out.println("檢測(cè)用戶是否掉線"); } }
接著在配置文件中對(duì)定時(shí)器進(jìn)行配置。
<?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:p="http://www.springframework.org/schema/p" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"> <bean id="mainTask" class="org.time.MainTask"></bean> <!-- 注冊(cè)定時(shí)器信息 --> <bean id="springTask" class="org.springframework.scheduling.timer.ScheduledTimerTask"> <!-- 延遲1秒執(zhí)行首次任務(wù) --> <property name="delay" value="1000"></property> <!-- 每隔2秒執(zhí)行一次任務(wù) --> <property name="period" value="2000"></property> <!-- 具體執(zhí)行的任務(wù) --> <property name="timerTask" ref="mainTask"></property> </bean> <!-- 配置任務(wù)調(diào)度器工廠 --> <bean id="timerFactory" class="org.springframework.scheduling.timer.TimerFactoryBean"> <property name="scheduledTimerTasks"> <list> <ref bean="springTask"/> </list> </property> </bean> </beans>
最后還需要在web.xml中對(duì)配置信息進(jìn)行注冊(cè):
<?xml version="1.0" encoding="UTF-8"?> <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> <display-name></display-name> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <context-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/applicationContext.xml</param-value> </context-param> </web-app>
這樣就完成了定時(shí)器的配置,這時(shí)啟動(dòng)tomcat,觀察控制臺(tái)輸出的結(jié)果:
第二種,使用注解的形式
(spring中一使用注解,感覺(jué)就是比其他方法方便了很多,代碼減少了很多)
這里需要用到AOP,需要引入AOP類庫(kù)
先看定時(shí)器的任務(wù)類:
package org.time; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Component; @Component public class MainTask01{ @Scheduled(cron = "0/3 * * * * ?") public void run() { System.out.println("推送消息來(lái)了"); } }
@Scheduled(cron = "0/3 * * * * ?") 表示三秒推送一次
corn可以配置各種時(shí)段任務(wù):
字段 | 值 | 特殊表示字符 |
年 | 一般為空,1970-2099 | , - * / |
月 | 1-12 或者 JAN-DEC | , - * / |
星期 | 1-7 或者 SUN-SAT | , - * ? / L C # |
日 | 1-31 | , - * ? / L W C |
時(shí) | 0-23 | , - * / |
分 | 0-59 | , - * / |
秒 | 0-59 | , - * / |
如: 配置每個(gè)工作日的10:20觸發(fā) :"0 20 10 ? * MON-FRI"
配置文件:
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:context="http://www.springframework.org/schema/context" xmlns:task="http://www.springframework.org/schema/task" xmlns="http://www.springframework.org/schema/beans" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task.xsd"> <context:annotation-config /> <!-- spring掃描注解的配置 --> <context:component-scan base-package="org.time" /> <task:annotation-driven scheduler="qbScheduler" mode="proxy"/> <task:scheduler id="qbScheduler" pool-size="10"/> </beans>
配置文件的頭部信息中比上一個(gè)引入了
xmlns:task="http://www.springframework.org/schema/task" http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task.xsd
<task:annotation-driven scheduler="qbScheduler" mode="proxy"/>
<task:scheduler id="qbScheduler" pool-size="10"/>
這兩句配置信息是必須要寫的,這是spring識(shí)別@Scheduled注解的關(guān)鍵
這這樣簡(jiǎn)單的幾句配置之后,開(kāi)啟服務(wù),運(yùn)行結(jié)果:
s
看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對(duì)創(chuàng)新互聯(lián)的支持。
文章標(biāo)題:如何正確的使用spring定時(shí)器
文章轉(zhuǎn)載:http://muchs.cn/article46/gjsshg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供商城網(wǎng)站、外貿(mào)網(wǎng)站建設(shè)、ChatGPT、、企業(yè)建站、網(wǎng)站收錄
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)