您好,登錄后才能下訂單哦!
這篇文章主要講解了“怎么用Spring framework實現定時器功能”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“怎么用Spring framework實現定時器功能”吧!
采用Web自動加載TimerManager來管理Timer鏈,在Class更新服務器熱加載后會發生異常。這要求對TimerManager進行一些特殊的處理才能保證Timer鏈的正確性。
使用Spring framework中提供的TimerTask自動加載功能可以非常容易的實現定時器鏈的管理。同時,采用Spring framework的這一功能可以非常容易的對定時器進行添加、刪除。
1.在Web.xml中申明
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/schedulingContext-timer.xml</param-value>
</context-param>
<servlet>
<servlet-name>context</servlet-name>
<servlet-class>org.springframework.web.context.ContextLoaderServlet</servlet-class>
<load-on-startup>3</load-on-startup>
</servlet>
2.在schedulingContext-timer.xml描述用戶的定時器
<bean id="timer" class="org.springframework.scheduling.timer.TimerFactoryBean">
<property name="scheduledTimerTasks">
<list>
<ref local="JorwangScheduledTimerTask1"/>
feedom.net
</list>
</property>
</bean>
<bean id="JorTimeTask1" class="workflow.common.MyTimer">
</bean>
<bean id="JorwangScheduledTimerTask1" class="org.springframework.scheduling.timer.ScheduledTimerTask">
<property name="timerTask"><ref bean="JorTimeTask1"/></property>
<property name="delay"><value>10000</value></property>
<property name="period"><value>86400000</value></property>
</bean>
3.編寫workflow.common.MyTimer定時器
這樣就輕松用Spring framework完成了定時器的功能。如果需要修改、增加、刪除定時器,只需要對2、3步的內容進行調整就可以實現。
感謝各位的閱讀,以上就是“怎么用Spring framework實現定時器功能”的內容了,經過本文的學習后,相信大家對怎么用Spring framework實現定時器功能這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。