Spring Quartz的配置

Spring Quartz的配置

 

1. 编写spring配置文件,代码如下:

<?xml version="1.0" encoding="UTF-8"?>
<beans default-lazy-init="true"
    xmlns="http://www.springframework.org/schema/beans" 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-2.0.xsd">

    <bean id="jobtask"
        class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
        <property name="targetObject" ref="cameraService" /> // 需要被JOB执行的类
        <property name="targetMethod" value="sendFixedCameraImageCmd" /> // 被JOB执行类的方法
    </bean>

    <bean id="cronTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean">
        <property name="jobDetail">
            <ref bean="jobtask" />
        </property>
        <property name="cronExpression"> // 配置cron表达式
            <value>0 * * * * ?</value>
        </property>
    </bean>

    <!-- 总管理类 如果将lazy-init='false'那么容器启动就会执行调度程序 -->
    <bean id="startQuertz" lazy-init="false" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
        <property name="triggers">
            <list>
                <ref bean="cronTrigger" />
            </list>
        </property>
    </bean> 

</beans>

 

2. 导入quartz.jar文件,这样既可完成Spring Quartz的配置。

 

 

 

 

 

猜你喜欢

转载自erictao9001.iteye.com/blog/1113753
今日推荐