spring schedule定时任务(一):注解的方式

我所知道的java定时任务的几种常用方式:

1、spring schedule注解的方式;
2、spring schedule配置文件的方式;
3、java类继承 TimerTask;

第一种方式的实现:

1、使用maven创建spring项目,schedule在spring-context.jar的包下边,因此需要导入与之相关的包;同时,我配的是spring web项目,也同时导入了spring-web和spring-webmvc的包,如下:

        org.springframework
        spring-context
        4.1.7.RELEASE
    
    
        org.springframework
        spring-web
        4.1.6.RELEASE
    
    
        org.springframework
        spring-webmvc
        4.1.6.RELEASE
    

maven导包配置只需要如下就好,其他相关的依赖,maven会自行解决。

2、配置spring项目的基础文件spring.xml:



    
    
    
    
    
    



3、编写java业务代码,需要在类声明上边添加 @Component注解,并在需要定时任务执行的方法声明上添加@Scheduled(cron = "0/5 * * * * ?")注解以及相关的参数。
参数使用可以参考 http://blog.csdn.net/isnotsuitable/article/details/7464556,我示例中表示每五秒执行一次
package scheduleTest;

import java.text.SimpleDateFormat;
import java.util.Date;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;

/**
 * spring定时器1
 * 
 * @author tuzongxun123
 *
 */
@Component
public class ScheduleTest {

    @Scheduled(cron = "0/5 * * * * ?")
    public void schTest1() {
        Date date = new Date();
        SimpleDateFormat sim = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        String dateStr = sim.format(date);
        System.out.println("这是spring定时器1,每五秒执行一次,当前时间:" + dateStr);
    }
}


4、web项目的基础配置文件web.xml,:


  appversion
  
    contextConfigLocation
    classpath:spring.xml
  
  
    spring监听器
    org.springframework.web.context.ContextLoaderListener
  
  
    index.jsp
  



上边的配置中使用了spring的上下文监听器,在这种情况下项目启动后,spring.xml中的定时任务配置才会生效。但是这不是唯一的方法,也可以使用如下的配置,启动项目后可以看到一样的效果:


  appversion
  
    contextConfigLocation
    classpath:spring.xml
  
  
    dispatcher
    org.springframework.web.servlet.DispatcherServlet
    
      contextConfigLocation
      classpath:spring.xml 
    
    1
  
  
    dispatcher
    /
  
  
    index.jsp
  

这里是吧spring的监听器换成了mvc的调度器,在调度器加载的时候就运行spring.xml中的定时任务配置,因此启动项目后看到效果一样。如果把上边的监听器和mvc的调度器一起配在这里,会看到启动项目后同一时间内这个定时任务需要执行的业务会执行两次。

你可能感兴趣的:(...♣spring/mvc,java常用重点回顾,spring,spring定时任务,定时任务,spring,schedule,schedule)