欢迎来到天天文库
浏览记录
ID:37901302
大小:56.50 KB
页数:5页
时间:2019-06-02
《Spring的Quartz入门小例子》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、Spring的Quartz入门小例子1、新建一个项目,名为quartzSayHello2、修改web.xml文件,代码如下:2、m/xml/ns/j2ee/web-app_2_4.xsd">contextConfigLocationclasspath:spring.xmlorg.springframework.web.context.ContextLoaderListener3、>index.jsp3、在SRC下新建包com.ylw.quartz4、在com.ylw.quartz下新建JobService类,继承Job接口,具体代码如下:packagecom.ylw.quartz;importorg.quartz.Job;importorg.quartz.JobExecutionContext;importorg.quartz.JobExecutionException;/****项目名称:quartzSayHe4、llo*类名称:JobService*类描述:*创建人:ylw*创建时间:2012-2-20下午05:14:27*修改人:ylw*修改时间:2012-2-20下午05:14:27*修改备注:*版本:1.0.1**/publicclassJobServiceimplementsJob{publicvoidexecute()throwsJobExecutionException{System.out.println("HelloQuartz");}publicvoidexecute(JobExecutionContextarg0)throwsJobExecu5、tionException{//TODOAuto-generatedmethodstub}}1、在com.ylw.quartz下新建Test类,具体代码如下:packagecom.ylw.quartz;importorg.springframework.context.ApplicationContext;importorg.springframework.context.support.ClassPathXmlApplicationContext;publicclassTest{/***方法描述:*创建人:ylw*创建时间:2012-2-20下午05:6、38:57*@paramargs*/publicstaticvoidmain(String[]args){System.out.println("Teststart...");ApplicationContextcontext=newClassPathXmlApplicationContext("spring.xml");//如果配置文件中将startQuertzbean的lazy-init设置为false则不用实例化//context.getBean("startQuertz");System.out.println("Testend...");}}17、、在项目下新建resources文件夹,在该文件夹下新建spring.xml文件,具体代码如下:8、ork.org/schema/tx"xmlns:jee="http://www.
2、m/xml/ns/j2ee/web-app_2_4.xsd">contextConfigLocationclasspath:spring.xmlorg.springframework.web.context.ContextLoaderListener3、>index.jsp3、在SRC下新建包com.ylw.quartz4、在com.ylw.quartz下新建JobService类,继承Job接口,具体代码如下:packagecom.ylw.quartz;importorg.quartz.Job;importorg.quartz.JobExecutionContext;importorg.quartz.JobExecutionException;/****项目名称:quartzSayHe
3、>index.jsp
4、llo*类名称:JobService*类描述:*创建人:ylw*创建时间:2012-2-20下午05:14:27*修改人:ylw*修改时间:2012-2-20下午05:14:27*修改备注:*版本:1.0.1**/publicclassJobServiceimplementsJob{publicvoidexecute()throwsJobExecutionException{System.out.println("HelloQuartz");}publicvoidexecute(JobExecutionContextarg0)throwsJobExecu
5、tionException{//TODOAuto-generatedmethodstub}}1、在com.ylw.quartz下新建Test类,具体代码如下:packagecom.ylw.quartz;importorg.springframework.context.ApplicationContext;importorg.springframework.context.support.ClassPathXmlApplicationContext;publicclassTest{/***方法描述:*创建人:ylw*创建时间:2012-2-20下午05:
6、38:57*@paramargs*/publicstaticvoidmain(String[]args){System.out.println("Teststart...");ApplicationContextcontext=newClassPathXmlApplicationContext("spring.xml");//如果配置文件中将startQuertzbean的lazy-init设置为false则不用实例化//context.getBean("startQuertz");System.out.println("Testend...");}}1
7、、在项目下新建resources文件夹,在该文件夹下新建spring.xml文件,具体代码如下:8、ork.org/schema/tx"xmlns:jee="http://www.
8、ork.org/schema/tx"xmlns:jee="http://www.
此文档下载收益归作者所有