spring 中配置定时调度两种方法介绍

方法一:

直接用jdk api的Timer类,无需配置spring文件

1、用@compent注解,实现InitializingBean接口 ,spirng会自动去查找afterPropertiesSet()方法,

2、在afterPropertiesSet方法中写业务实现,调用timer的schedule方法或者 scheduleAtFixedRate方法

          schedule( TimerTask task, Date time)
          安排在指定的时间执行指定的任务。

          scheduleAtFixedRate( TimerTask task, Date firstTime, long period)
          安排指定的任务在指定的时间开始进行重复的 固定速率执行

代码实现如下:

import java.util.Calendar;
import java.util.Date;
import java.util.Timer;

import java.util.TimerTask;
import javax.annotation.Resource;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.stereotype.Component;
import com.cssweb.payment.account.service.support.AccountServiceSupport;

@Component
public class GetTimer implements InitializingBean{
 
 private Date date;
 
 @Override
 public void afterPropertiesSet() throws Exception {
  init();//初始化参数,每天凌晨00:00:00开始作业
  //System.out.println("时间是:============="+date);
  new Timer().schedule(test(), date);  //test()为自己要处理的业务实现方法
 }
 
 /** 
 * 初始化参数 
 *
 */
  public void init(){ 
     Calendar cal = Calendar.getInstance();
     cal.set(Calendar.HOUR_OF_DAY, 0);
     cal.set(Calendar.SECOND, 0);
     cal.set(Calendar.MINUTE, 0);
     cal.add(Calendar.DAY_OF_MONTH, 1);
     date = cal.getTime();
 }


 public static TimerTask test(){
  return new TimerTask() {
   @Override
   public void run() {
    System.out.println(new Date()+"开始了------------------------------");
   }
  };
 }


}

 

方法二:用spring配置文件进行配置


       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/jee http://www.springframework.org/schema/jee/spring-jee-2.5.xsd">
   
    //找到对应的类名
 
 
 
  
  
  
  
  
  
 

 
 
  
  
  
 


 

作者:walt18 发表于2014-11-3 15:44:16 原文链接
阅读:71 评论:0 查看评论

你可能感兴趣的:(spring,调度,方法)