美文网首页
Spring 定时器

Spring 定时器

作者: 仅此而已004 | 来源:发表于2017-02-04 11:41 被阅读57次
<!-- ****************************定时插入BugLog表数据************************ -->
    <!-- 要调用的工作类 -->
    <bean id="qtzBugLogAction" class="com.chinamobile.datacollector.action.QtzAction">
    </bean>
    <!-- 定义调用对象和调用对象的方法  -->
    <bean name="insertBugLogQtzTask" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
        <!-- 调用的类 -->
        <property name="targetObject" ref="qtzBugLogAction" />
        <!-- 调用类中的方法 -->
        <property name="targetMethod" value="insertBugLogQtz" />
        <!-- 不执行并发任务 -->
        <property name="concurrent" value="false" />
    </bean>
    <!-- 定义触发时间 -->
    <bean id="insertBugLogQtzTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean">
        <property name="jobDetail">
            <ref bean="insertBugLogQtzTask" />
        </property>
        <!-- cron表达式 -->
        <property name="cronExpression">
            <!-- 每隔5秒 
            <value>0/5 * * * * ?</value> -->
            <!-- 每个整点执行一次  -->
            <value>0 0 0-23 * * ?</value>
        </property>
    </bean>
    <!-- *************************************************************************************************************** -->
    
<!-- 总管理类 -->
    <bean id="startQuartz" lazy-init="false" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
        <property name="triggers">
            <list>
                <ref bean="insertBugLogQtzTrigger" />
                <ref bean="insertVipLogQtzTrigger" />
                <ref bean="getVipListQtzTrigger" />
                <ref bean="deleteDataFromThreeMonthsAgoQtzTrigger"/>
            </list>
        </property>
        <property name="autoStartup">
            <value>true</value>
        </property>
    </bean>

相关文章

网友评论

      本文标题:Spring 定时器

      本文链接:https://www.haomeiwen.com/subject/xfrmettx.html