码迷,mamicode.com
首页 > 编程语言 > 详细

spring定时器配置

时间:2016-08-29 14:26:58      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:

在此记录两种定时任务的配置:

一种是quart定时器:

  <1>配置xml文件(定时任务配置)

  <!--定时任务 -->
    <bean id="txfwBomc" class="shmc.framework.scheduling.JobDetailFactoryBean">
        <property name="jobDataAsMap">
            <map>
                <entry key="targetObject" value="bomcManager"/>  <!-- 定时任务所在类 -->
                <entry key="targetMethod" value="bomcDataPropel"/>  <!-- 定时任务实现方法 -->
            </map>
        </property>
        <property name="concurrent" value="false" />
    </bean>
    
    <!--定义时间间隔触发器 -->
     <bean id="bomcTigger" class="org.springframework.scheduling.quartz.CronTriggerBean">
      <property name="jobDetail" ref="txfwBomc"/>
      <property name="cronExpression" value="0 0 1 * * ?" />
    </bean> 

   <2>定义实现类的bean

<bean id="bomcManager" class="com.test.service.BomcManager" parent="frameworkManager">
</bean>

   <3>启动定时任务

  <!-- 集群定时器调度工厂  -->
    <bean id="clusterSchedule" class="shmc.framework.scheduling.SchedulerFactoryBean">
        <property name="applicationContextSchedulerContextKey">
            <value>applicationContext</value>
        </property>
        <property name="triggers">
            <list>
         <!-- BOMC推送 -->
               <ref bean="bomcTigger"/>
            </list>
        </property>
    </bean>

  <4>业务层实现代码

  ………………

 

  

一种利用注解:

  <1>配置xml文件,需要引用spring-task-3.1.xsd文档。

<beans 
    xmlns:task="http://www.springframework.org/schema/task"
    xsi:schemaLocation="
        http://www.springframework.org/schema/task     //名称空间的名字
        http://www.springframework.org/schema/task/spring-task-3.1.xsd">  //模式文档的位置
    
    <!-- 扫描包路径 -->
    <context:component-scan base-package="com.src.xx" >
    </context:component-scan>
    <!--  开启定时器-->
    <task:annotation-driven/>
    
</beans> 

  <2>java代码,具体实现在业务层实现

package com.src.xx.controller.api.timer;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;

import com.src.xx.service.timer.XianshiTimerService;


@Component("taskXianshi")
public class XianshiTimer {
    
    @Autowired
    private XianshiTimerService xianshiTimerService;
    
    /**
     * 定时任务
     */
    @Scheduled(cron = "0 26 10 * * ?") 
    public void xsActivityRemind(){
        xianshiTimerService.xsActivityRemind();
    }
       
}

 

 

● spring定时任务cronExpression时间:<注意:每个时间点中间必须有空格分隔>
  一个cronExpression的表达式从左到右定义:
  秒(0-59)
  分钟(0-59)
  小时(0-23)
  月份中的日期(1-31)
  月份(1-12或JAN-DEC)
  星期中的日期(1-7或SUN-SAT)
  年份(1970-2099)

spring定时器配置

标签:

原文地址:http://www.cnblogs.com/doufuquanjia/p/5810604.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!