Spring配置Quartz样例

网上配置很多,这里只写个样例,方便直接拷贝使用。

1. 需要的jar包有:
spring-framework-2.5.6\dist\spring-2.5.6.jar
spring-framework-2.5.6\lib\quartz\quartz-all-1.6.1.jar
spring-framework-2.5.6\lib\jakarta-commons\commons-logging.jar
spring-framework-2.5.6\lib\jakarta-commons\commons-collections.jar
spring-framework-2.5.6\lib\log4j\log4j-1.2.15.jar

2. 需要执行任务的java类

package com.servlet.backup;
public class QuartzJob
{

    /**
     * 固定间隔时间执行此任务
     */
    public void showQuartzMessageEachseconds()
    {
        System.out.println("固定间隔时间执行:showQuartzMessageEachseconds is called...");
    }

    /**
     * 指定时间执行此任务
     */
    public void showQuartzMessageAtFixedTime()
    {
        System.out.println("固定时间点执行:showQuartzMessageAtFixedTime is called...");
    }
}

3. Spring的bean配置文件,WebRoot\WEB-INF\conf\springbeans.service.xml :




	
	

4. 定时任务配置文件,WebRoot\WEB-INF\conf\timer.service.xml :




	
	
		
		
		
		
	
	
	
		
		
		
	

	
	
		
		
		
		
	
	
	
		
		
	

	
	
		
			
				
				
			
		
		
		
			
				1
			
		
		
		
			10
		
	

说明:
1> 这些bean可以与Spring的bean放到一起定义。
2> 关于“固定时间点执行定时任务”,其表达式格式: [秒] [分] [小时] [日] [月] [周] [年],详情请baidu搜索“Quartz CronTrigger”。


5. web配置文件配置,WebRoot\WEB-INF\web.xml :



	
	
		contextConfigLocation
		/WEB-INF/conf/*.service.xml
	

	
	
		
			org.springframework.web.context.ContextLoaderListener
		
	

6. 将Web服务部署到tomcat上,启动tomcat。

7. 结果检查:
启动服务10秒后,每隔10秒,控制台打印:“固定间隔时间执行:showQuartzMessageEachseconds is called...”;
每分钟的0秒时,控制台打印:“固定时间点执行:showQuartzMessageAtFixedTime is called...”。



你可能感兴趣的:(JAVA框架学习)