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

2021-03-09 14:31

阅读:474

标签: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


评论


亲,登录后才可以留言!