溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么用Spring framework實(shí)現(xiàn)定時(shí)器功能

發(fā)布時(shí)間:2021-07-13 18:34:42 來源:億速云 閱讀:173 作者:chen 欄目:編程語言

這篇文章主要講解了“怎么用Spring framework實(shí)現(xiàn)定時(shí)器功能”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“怎么用Spring framework實(shí)現(xiàn)定時(shí)器功能”吧!

采用Web自動加載TimerManager來管理Timer鏈,在Class更新服務(wù)器熱加載后會發(fā)生異常。這要求對TimerManager進(jìn)行一些特殊的處理才能保證Timer鏈的正確性。

使用Spring framework中提供的TimerTask自動加載功能可以非常容易的實(shí)現(xiàn)定時(shí)器鏈的管理。同時(shí),采用Spring framework的這一功能可以非常容易的對定時(shí)器進(jìn)行添加、刪除。

1.在Web.xml中申明

  1. <context-param>  

  2. <param-name>contextConfigLocation</param-name>  

  3. <param-value>/WEB-INF/schedulingContext-timer.xml</param-value>  

  4. </context-param>  

  5. <servlet>  

  6. <servlet-name>context</servlet-name>  

  7. <servlet-class>org.springframework.web.context.ContextLoaderServlet</servlet-class>  

  8. <load-on-startup>3</load-on-startup>  

  9. </servlet> 

2.在schedulingContext-timer.xml描述用戶的定時(shí)器

  1. <bean id="timer" class="org.springframework.scheduling.timer.TimerFactoryBean">  

  2. <property name="scheduledTimerTasks">  

  3. <list>  

  4. <ref local="JorwangScheduledTimerTask1"/>  

  5. feedom.net  

  6. </list>  

  7. </property>  

  8. </bean>  

  9. <bean id="JorTimeTask1" class="workflow.common.MyTimer">  

  10. </bean>  

  11. <bean id="JorwangScheduledTimerTask1" class="org.springframework.scheduling.timer.ScheduledTimerTask">  

  12. <property name="timerTask"><ref bean="JorTimeTask1"/></property>  

  13. <property name="delay"><value>10000</value></property>  

  14. <property name="period"><value>86400000</value></property>  

  15. </bean> 

3.編寫workflow.common.MyTimer定時(shí)器
這樣就輕松用Spring framework完成了定時(shí)器的功能。如果需要修改、增加、刪除定時(shí)器,只需要對2、3步的內(nèi)容進(jìn)行調(diào)整就可以實(shí)現(xiàn)。

感謝各位的閱讀,以上就是“怎么用Spring framework實(shí)現(xiàn)定時(shí)器功能”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對怎么用Spring framework實(shí)現(xiàn)定時(shí)器功能這一問題有了更深刻的體會,具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI