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

springboot的任务调度(定时任务)

时间:2020-12-29 11:00:26      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:fixed   form   mat   时间   http   schedule   cron   package   port   

springboot的任务调度(定时任务)

制作人:全心全意

springboot的任务调度(定时任务,不支持分布式)

任务调度实现类

package com.zq.main.tasks;

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

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

@Component // 表示将这个类交给Spring管理
public class ScheduledTasks {
	private static final SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm:ss");

	@Scheduled(fixedRate = 5000)
	// 设置时间间隔,毫秒为单位
	//@Scheduled(cron="1/2 * * * * ? ")	//每2秒执行一次
	//使用Quartz表达式设定定时任务,表达式生成网址https://www.bejson.com/othertools/cron,格式为秒分时日月周
	public void reportCurrentTime() {
		System.out.println("现在时间:" + dateFormat.format(new Date()));
	}

}

  

启动类

package com.zq.main;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.scheduling.annotation.EnableScheduling;

import com.zq.main.mybatis.dao.config.data1.Data1Config;
import com.zq.main.mybatis.dao.config.data2.Data2Config;

@EnableConfigurationProperties({ Data1Config.class, Data2Config.class })
@SpringBootApplication
@EnableScheduling // 开启任务调度
public class App {
	public static void main(String[] args) {
		SpringApplication.run(App.class, args);
	}
}

  

springboot的任务调度(定时任务)

标签:fixed   form   mat   时间   http   schedule   cron   package   port   

原文地址:https://www.cnblogs.com/zhangquan-yw/p/14175794.html

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