SpringMVC之定时器

时间:2024-03-26 10:55:30

第一步:导入jar包

SpringMVC之定时器

第二步:在springmvc.xml中配置

SpringMVC之定时器
SpringMVC之定时器
SpringMVC之定时器

第三步:书写定时任务,启动项目测试

package cn.java.tasks;

import java.text.SimpleDateFormat;
import java.util.Date;

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

/**
 * @Description: TODO
 * @Title:  Task1.java
 * @author: Matthew
 * @date: 2019年3月19日 下午7:30:18
 * @version V1.0
 */
@Component
public class Task1 {
	//单位是毫秒
//	@Scheduled(fixedRate = 2000)
	//19:44-19:45之间每个2秒输出下时间
	@Scheduled(cron = "0/2 44 19 * * ?")
	public void task1(){
		Date cTime = new Date();
		SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
		String string = simpleDateFormat.format(cTime);
		System.out.println(string);
	}
}

SpringMVC之定时器
2019-03-19 19:44:04
2019-03-19 19:44:06
2019-03-19 19:44:08
2019-03-19 19:44:10
2019-03-19 19:44:12
2019-03-19 19:44:14
2019-03-19 19:44:16
2019-03-19 19:44:18
2019-03-19 19:44:20
2019-03-19 19:44:22
2019-03-19 19:44:24
2019-03-19 19:44:26
2019-03-19 19:44:28
2019-03-19 19:44:30
2019-03-19 19:44:32
2019-03-19 19:44:34
2019-03-19 19:44:36
2019-03-19 19:44:38
2019-03-19 19:44:40
2019-03-19 19:44:42
2019-03-19 19:44:44
2019-03-19 19:44:46
2019-03-19 19:44:48
2019-03-19 19:44:50
2019-03-19 19:44:52
2019-03-19 19:44:54
2019-03-19 19:44:56
2019-03-19 19:44:58