目录
前言
公司最近需要完成一个定时去DB查询数据,把有问题的数据给筛选出来通过微信小程序的消息推送功能将有问题的数据推送给指定的员工去筛查问题。对于Java后端来说肯定实现定时功能肯定是使用到Spring封装好的定时调度Scheduled。
正文
定时器的实现
Spring boot启动类代码,加入了@EnableScheduling注解来开启定时器功能
/**
* @author liha
* @version 1.0
* @date 2022/3/15 14:16
*/
@SpringBootApplication
@EnableScheduling // 开启定时功能
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class,args);