spring定时任务quartz

<?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" xmlns:jee="http://www.springframework.org/schema/jee"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
           http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
           http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
           http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-2.5.xsd">

    <!-- 要调用的工作类 -->
    <bean id="quartzJob" class="com.joyveb.jlbos.timer.TimerWork"></bean>
     <!--定义调用对象和调用对象的方法-->
    <bean id="jobtask"
        class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
        <!-- 调用的类 -->
        <property name="targetObject">
            <ref bean="quartzJob" />
        </property>
        <!-- 调用类中的方法 -->
        <property name="targetMethod">
            <value>work</value>
        </property>
    </bean>
     <!--定义触发时间 -->
    <bean id="doTime"
        class="org.springframework.scheduling.quartz.CronTriggerBean">
        <property name="jobDetail">
            <ref bean="jobtask" />  
        </property>
        <!-- cron表达式 -->
        <property name="cronExpression">

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

业务类

package com.joyveb.jlbos.timer;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.context.support.ApplicationObjectSupport;

import com.joyveb.jlbos.service.impl.TimerServiceImpl;
import com.joyveb.router.framework.exception.RemoteCallException;
import com.joyveb.router.framework.exception.RouterException;

public class TimerWork extends ApplicationObjectSupport{
    public static Log log=LogFactory.getLog(TimerWork.class);
    public void work() {
        //自定义业务方法
    }
}

猜你喜欢

转载自zy1032.iteye.com/blog/1320769