- 1、本文档共7页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
Spring定时器的两种实现方式
一.Spring定时器的两种实现方式:
继承java.util.TimerTask
继承org.springframework.scheduling.quartz.QuartzJobBean
下面详细说明两种方式实现的过程
在开始说明前先建立一个web工程SpringTiming然后导入需要用到的包
TimerTask定时(用TimerTask来实现定时只能设置定时器以怎样一个频率(也就是多久运行一次)运行而不能设定某个时间点来运行定时器)
建一个类TestTimerTask继承TimerTask类实现run方法,这个类的run方法里的代码在定时器触发时执行
package com.SpringTiming;
import java.util.TimerTask;
public class TestTimerTask extends TimerTask {
@Override
public void run() {
System.out.println(=====执行TimerTask定时成功=====);
}}
建一个xml文件applicationContext.xml用来配置定时器
?xml version=1.0 encoding=UTF-8?
beans
xmlns=/schema/beans
xmlns:xsi=/2001/XMLSchema-instance
xsi:schemaLocation=/schema/beans /schema/beans/spring-beans-2.5.xsd
/beans
新增一个bean
bean id=TestTimer class=com.SpringTiming.TestTimerTask/bean
bean id=testScheduledTimerTask class=org.springframework.scheduling.timer.ScheduledTimerTask
property name=timerTask value=com.SpringTiming.TestTimerTask /
property name=period
value10000/value
/property
/bean
其中timerTask属性是用来告知ScheduledTimerTask执行那个类
,period属性是用来设置定时器运行的间隔时间(也就是调用TestTimerTask.run()方法的间隔时间),其中的1000代表1000毫秒。
再添加一个负责启动定时器的bean
bean id=testTimerFactoryBean class=org.springframework.scheduling.timer.TimerFactoryBean
property name=scheduledTimerTasks
list
ref bean=testScheduledTimerTask/
/list
/property
/bean
其中的scheduledTimerTask属性值用来引入需要定时触发的执行的bean
3.再添加一个类(TestApp.java)用来调用applicationContext.xml文件
TestApp.java
package com.TimingRun;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class TestApp {
public static void main(String[] args) {
// TODO Auto-generated method stub
ApplicationContext context = new ClassPathXmlApplicationContext(applicationContext.xml);
}
}
quartz定时(可以用SimpleTriggerBean设置一个频率时间来运行定时器,类似于TimerTask;还可以用CronTriggerBean来设置一个固定的时间点来运行定时器)
新建一个类TestQuartzJobBean.java继承QuartzJobBean抽象类
TestQuartzJobBean.java
package com.SpringTiming;
import org.quartz.JobExecutionContext;
import or
您可能关注的文档
- Progress toward the Determination of Complete Vertex Operators for The IIB Matrix Model.pdf
- project option的应用.pdf
- Progressive and Discrete Auctions a Finite Sample Evaluation Based on Dominated Strategies.pdf
- Projective Dynamics Analysis of Magnetization Reversal.pdf
- protel元器件中英文对照表.doc
- Proteus在感测技术课程设计中的应用.pdf
- PROMO简单的因果效应在时间序列上的分析(PROMO Simple causal effects in time series).pdf
- Proteus单片机仿真中的μCOSⅡ移植.pdf
- Promptx软件安装调试说明书.doc
- Proxy源代码分析谈谈如何学习linux网络编程.doc
文档评论(0)