任务类
import org.springframework.beans.factory.annotation.Configurable;
import org.springframework.stereotype.Component;
/**
* @author HF
* @version 创建时间:2019年8月16日 上午10:07:58
* 类说明
*/
public class DataUpdateQuartz {
public void dataUpdate() {
System.out.println("asdfsdf");
}
}
生成该类Bean 可以用注解也可以在xml中配置 applicationContext.xml
<!-- quartz相关 -->
<bean id="dataUpdateQuartz" class="com.quartz.DataUpdateQuartz"></bean>
<import resource="classpath:spring-quartz.xml"/>
spring-quartz.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<!-- 调度器 触发器-->
<bean class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
<property name="triggers">
<list>
<ref bean="cronTrigger_1" />
</list>
</property>
</bean>
<!-- 定时任务配置 1-->
<bean name="SMSScheduler" class="com.quartz.DataUpdateQuartz"/>
<bean id="SMSSDetail_1" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
<property name="targetObject">
<ref bean="dataUpdateQuartz" />
</property>
<property name="targetMethod">
<value>dataUpdate</value>
</property>
</bean>
<bean id="cronTrigger_1" class="org.springframework.scheduling.quartz.CronTriggerBean">
<property name="jobDetail">
<ref bean="SMSSDetail_1" />
</property>
<!-- 每一秒钟执行一次 -->
<property name="cronExpression">
<value>0/1 * * * * ?</value>
</property>
</bean>
</beans>
本文介绍如何使用Spring框架整合Quartz实现定时任务。通过XML配置方式,详细展示了如何定义一个定时任务类,配置其执行频率,并将其注册到Spring容器中。此配置使得DataUpdateQuartz类的方法dataUpdate每秒执行一次。

321

被折叠的 条评论
为什么被折叠?



