Quartz专题(二)-Spring和Quart整合

Quartz 是 OpenSymphony 开源组织在任务调度领域的一个开源项目,完全基于Java实现。下面讲解Spring和Quart整合流程:

1.导入依赖

<dependencies>
	<dependency>
		<groupId>org.springframework</groupId>
		<artifactId>spring-context</artifactId>
		<version>4.1.6.RELEASE</version>
	</dependency>
	<dependency>
		<groupId>org.quartz-scheduler</groupId>
		<artifactId>quartz</artifactId>
		<version>2.2.1</version>
	</dependency>
	<dependency>
		<groupId>org.quartz-scheduler</groupId>
		<artifactId>quartz-jobs</artifactId>
		<version>2.2.1</version>
	</dependency>
	<dependency>
		<groupId>org.springframework</groupId>
		<artifactId>spring-context-support</artifactId>
		<version>4.1.6.RELEASE</version>
	</dependency>
	<dependency>
		<groupId>org.springframework</groupId>
		<artifactId>spring-orm</artifactId>
		<version>4.1.6.RELEASE</version>
	</dependency>
</dependencies>

2.创建任务类

public class HelloWorldJob implements Job {

	private static int count=1;
	
	@Override
	public void execute(JobExecutionContext context) throws JobExecutionException {
		ApplicationContext applicationContext=(ApplicationContext)context.getJobDetail().getJobDataMap().get("applicationContext");
        System.out.println("获取到的容器是:"+(count++)+"|"+applicationContext);
        Student student = (Student) applicationContext.getBean("s");
        System.out.println(student);
		System.out.println("Welcome to Spring_Quartz World!"+ new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()));
	}
}

3.配置文件spring_quartz.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p"
	xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
    http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
    http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd">
    
    <bean id="s" class="com.bruce.bean.Student">
       <property name="id" value="1"/>
       <property name="name" value="bruce"/>
    </bean>

	<!-- Spring整合Quartz进行配置遵循下面的步骤: 1:定义工作任务的Job 2:定义触发器Trigger,并将触发器与工作任务绑定 
		3:定义调度器,并将Trigger注册到Scheduler -->
	<!-- 1:定义任务的bean ,这里使用JobDetailFactoryBean,也可以使用MethodInvokingJobDetailFactoryBean 
		,配置类似 -->
	<bean name="spring_hello_job"
		class="org.springframework.scheduling.quartz.JobDetailFactoryBean">
		<!-- 指定job的名称 -->
		<property name="name" value="spring_hello_job" />
		<!-- 指定job的分组 -->
		<property name="group" value="spring_hello_group" />
		<!-- 指定具体的job类 -->
		<property name="jobClass" value="com.bruce.job.HelloWorldJob" />

		<!-- 必须设置为true,如果为false,当没有活动的触发器与之关联时会在调度器中会删除该任务 -->
		<property name="durability" value="true" />

		<!-- 指定spring容器的key,如果不设定在job中的jobmap中是获取不到spring容器的 -->
		<property name="applicationContextJobDataKey" value="applicationContext" />

	</bean>


	<!-- 2.1:定义触发器的bean,定义一个Simple的Trigger,一个触发器只能和一个任务进行绑定 -->
	<bean name="simpleTrigger"
		class="org.springframework.scheduling.quartz.SimpleTriggerFactoryBean">
		<!-- 指定Trigger的名称 -->
		<property name="name" value="hello_trigger" />
		<!--指定Trigger的名称 -->
		<property name="group" value="hello_trigger_group" />
		<!--指定Tirgger绑定的Job -->
		<property name="jobDetail" ref="spring_hello_job" />
		<!--指定Trigger的延迟时间 1s后运行 -->
		<property name="startDelay" value="1000" />
		<!-- 指定Trigger的重复间隔 5s -->
		<property name="repeatInterval" value="5000" />
		<!--指定Trigger的重复次数 -->
		<property name="repeatCount" value="5" />
	</bean>

	<!-- 2.2:定义触发器的bean,定义一个Cron的Trigger,一个触发器只能和一个任务进行绑定 -->
	<bean id="cronTrigger"
		class="org.springframework.scheduling.quartz.CronTriggerFactoryBean">
		<!-- 指定Trigger的名称 -->
		<property name="name" value="hello_trigger1" />
		<!-- 指定Trigger的名称 -->
		<property name="group" value="hello_trigger_group1" />
		<!-- 指定Tirgger绑定的Job -->
		<property name="jobDetail" ref="spring_hello_job" />
		<!-- 指定Cron 的表达式 ,当前是每隔1s运行一次 -->
		<property name="cronExpression" value="0/1 * * * * ?" />
	</bean>

	<!-- 3.定义调度器,并将Trigger注册到调度器中 -->
	<bean id="scheduler"
		class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
		<property name="triggers">
			<list>
				<!--<ref bean="simpleTrigger"/>  -->
				 <ref bean="cronTrigger" />
			</list>
		</property>
	</bean>
</beans>

4.启动容器

public static void main(String[] args) {
        ApplicationContext ac = new ClassPathXmlApplicationContext("spring_quartz.xml");
}

5.小结

使用Quartz框架实现任务调度的核心是创建任务(Job)、触发器(Trigger)和调度器(Scheduler)。
Quartz的两种常用触发器:SimpleTrigger和CronTrigger。
Spring对Quartz的核心组件进行封装,包括JobDetailBean、SimpleTriggerBean、CronTriggerBean、SchedulerFactoryBean,使用可以更高效地实现任务调度。
通过MethodInvokingJobDetailFactoryBean,允许直接由类方法配置成工作任务.

发布了38 篇原创文章 · 获赞 5 · 访问量 934

猜你喜欢

转载自blog.csdn.net/spring_zhangH/article/details/103673950
今日推荐