欢迎来到天天文库
浏览记录
ID:9959087
大小:139.00 KB
页数:0页
时间:2018-05-17
《spring添加触发器+quartz》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、Spring里面添加触发器假如需要代码自动执行某些操作,这个时候可以利用spring结合Quartz来完成这个功能。Quqrtz官网:http://www.quartz-scheduler.org代码部分:需要添加的架包:quqrtz-1.6或者1.8;SpringcontextsupportSpringwebCommingloggingCommons-collections代码很简单:/**@authorsixi*@version0.1*Company:Tsinghua*Date:2012-09-15*Description:这是一个执行调
2、度的具体类,在Spring配置文件中指定调用此类的work方法**/packagecom.tsinghua.test;importjava.util.Date;/**使用spring+Quartz执行任务调度的具体类**/publicclassMyJob{/**Description:具体工作的方法,此方法只是向控制台输出当前时间,*输入的日志在:%tomcatRoot%logstomcat7-stdout.yyyy-MM-dd.log中,*其中,yyyy-MM-dd为部署的日期,经试验发现默认情况下并不是每天都生成一个stdout的日志
3、文件*@return返回void**/publicvoidwork(){System.out.println("当前时间:"+newDate().toString());}}//EndofMyJob4.配置web.xml,具体配置文件如下:4、:schemaLocationhttp://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">SpringQuartzDemoindex.jsp5、contextConfigLocation/WEB-INF/classes/applicationContext.xmlorg.springframework.web.context.ContextLoaderListener6、er-class>5.配置applicationContext.xml7、p"xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-3.0.xsd">8、MethodInvokingJobDetailFactoryBean">
4、:schemaLocationhttp://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">SpringQuartzDemoindex.jsp
5、contextConfigLocation/WEB-INF/classes/applicationContext.xmlorg.springframework.web.context.ContextLoaderListener6、er-class>5.配置applicationContext.xml7、p"xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-3.0.xsd">8、MethodInvokingJobDetailFactoryBean">
6、er-class>
7、p"xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-3.0.xsd">8、MethodInvokingJobDetailFactoryBean">
8、MethodInvokingJobDetailFactoryBean">
此文档下载收益归作者所有