spring task 定时任务实现示例

一、引入spring相关jar包:

spring task 定时任务实现示例_第1张图片

二、在web.xml中配置spring


  Spring监听器
  org.springframework.web.context.ContextLoaderListener


  contextConfigLocation
  classpath:applicationContext.xml

三、在applicationContext.xml中配置监听器




  
  
  
  
  
  
  



四、编写实体类

package com.test.task;

import java.text.DateFormat;
import java.util.Date;

import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;

@Component
public class TestTask {
  @Scheduled(cron = "*/5 * * * * ?")
  public void print(){
    String time = DateFormat.getDateTimeInstance().format(new Date());
    System.out.println("定时器触发打印"+time);
  }
}

五、工程目录:

spring task 定时任务实现示例_第2张图片

运行结果:

spring task 定时任务实现示例_第3张图片

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

你可能感兴趣的:(spring task 定时任务实现示例)