日本免费高清视频-国产福利视频导航-黄色在线播放国产-天天操天天操天天操天天操|www.shdianci.com

學(xué)無先后,達者為師

網(wǎng)站首頁 編程語言 正文

springboot心跳機制,定時任務(wù)

作者:超超超超子 更新時間: 2022-05-20 編程語言

springboot心跳機制,執(zhí)行定時任務(wù)

?


? 
? ?org.springframework.boot
? ?spring-boot-starter-quartz
? 

?


ScheduledConfig.java

@Configuration
public class ScheduledConfig implements SchedulingConfigurer {
	
	
	@Value("${scheduled-thread-pool}")
	private int scheduledThreadPool;

	@Override
	public void configureTasks(ScheduledTaskRegistrar scheduledTaskRegistrar) {
		scheduledTaskRegistrar.setScheduler(setTaskExecutors());
	}
//
	@Bean(destroyMethod = "shutdown")
	public Executor setTaskExecutors() {
		return Executors.newScheduledThreadPool(scheduledThreadPool); // scheduledThreadPool個線程來處理。
	}
	
	
}

?

具體執(zhí)行的任務(wù):

ScheduledDeleteData.java

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;

import com.pub.cloud.system.status.util.H2Util;




@Component
public class ScheduledDeleteData {
	private static final Logger logger = LogManager.getLogger(ScheduledDeleteData.class);

	@Value("${source-url}")
	private String sourceUrl;
	
	//時間間隔
	@Scheduled(fixedRate = 60000)
	public void scheduledExcSql() {
		System.out.println(sourceUrl);
	}

}

?

application.yml配置文件

scheduled-thread-pool: 1
source-url : "*****************"

?

?

SpringApplication.run中加如注解

@EnableScheduling

LinuxSystemStatusApplication.java

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

@SpringBootApplication
@EnableScheduling
public class LinuxSystemStatusApplication {

	public static void main(String[] args) {
		SpringApplication.run(LinuxSystemStatusApplication.class, args);
	}
	
	
}

?

原文鏈接:https://blog.csdn.net/g5703129/article/details/107803023

欄目分類
最近更新