您的位置:首页 > 编程语言 > Java开发

Spring Quartz定时调度任务配置

2016-01-13 14:10 585 查看
applicationContext-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:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd" default-lazy-init="false">

<bean id="scheduleInfoManager" class="com.web.scheduler.util.QuartzJobFactory">
<property name="scheduler" ref="schedulerFactory" />
<property name="jobService"></property>
</bean>

<bean id="schedulerJobDetail" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
<property name="group" value="job_work"/>
<property name="name" value="job_work_name"/>
<property name="targetObject" ref="scheduleInfoManager"/>
<property name="targetMethod" value="execute"/>
<property name="concurrent" value="false"/>
</bean>

<bean id="cronTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean ">
<property name="name" value="work_default_name"/>
<property name="group" value="work_default"/>
<property name="jobDetail" ref="schedulerJobDetail" />
<property name="cronExpression">
<value>0 0 2 * * ?</value>
</property>
</bean>

<bean id="schedulerFactory" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
<property name="triggers">
<list>
<ref bean="cronTrigger" />
</list>
</property>
</bean>
</beans>


<!-- 在spring appcontext中引入后定时调度才会有效 -->
<import resource="classpath:applicationContext-quartz.xml" />
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: