SpringBoot添加定时器 @EnableScheduling

方法一:通过springboot自带入口来开启定时器。

首先我们都知道,springboot有一个自己的入口,也就是@SpringBootApplication(他是一个组合注解 由@Configuration,@EnableAutoConfiguration和@ComponentScan组成)。

首先定时器需要有一个总开关,因为我可能要定时很多函数,如果我想全都暂时关上总不能一个一个把注解给删掉吧。所以我们需要先把总开关打开,也就是在springboot的入口处添加@EnableScheduling这个注解。上代码(此为springboot的入口)

    @Controller
    @EnableCaching
    @ImportResource({"classpath:dubbo-admin-api-customer.xml"})
    @EnableWebMvc
    @SpringBootApplication
    @EnableScheduling
    public class Application extends WebMvcConfigurerAdapter implements CommandLineRunner {
        private Logger logger = LoggerFactory.getLogger(Application.class);
     
        public static void main(String[] args) throws Exception{
            ApplicationContext app = SpringApplication.run(Application.class, args);
            SpringManager.initContext(app);
        }
     
        @Override
        public void run(String... args) throws Exception {
            logger.info("服务启动完成!");
        }
    }
    总开关添加好后,我们只需要对需要定时方法进行配置即可,使用注解@Scheduled(cron = "0/2 * * * * *") 后面为Cron表达式。
    表示每2秒执行一次。cron的具体语法我会一会贴在最后。(下面两种定时方法实现方式)
//实现方式一
@Component
public class JbpLoggerControl {
    private Logger logger = LogManager.getLogger(JbpLoggerControl.class);

    public JbpLoggerControl() {
    }

    @PostConstruct
    @Scheduled(
        cron = "0/10 * * * * ?"
    )
    public void init() {
        this.prepare();
    }

    private void prepare() {
        logger.info("now time:" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()));
    }
}   
    //实现方式二
    @Component
    public class SchedulingConfig {
        Logger logger=LoggerFactory.getLogger(getClass());
     
        @Scheduled(cron = "0/5 * * * * ?") // 设置每5秒执行一次
        public void getToken() {
            logger.info("now time:" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()));
        }
    }
     
    好了,大功告成。你会发现这个方法每5秒就会被运行一次。
    2018-08-29 10:52:40,001 INFO (SchedulingConfig.java:24)- now time:2018-08-29 10:52:40
    2018-08-29 10:52:45,005 INFO (SchedulingConfig.java:24)- now time:2018-08-29 10:52:45
    2018-08-29 10:52:50,001 INFO (SchedulingConfig.java:24)- now time:2018-08-29 10:52:50
    2018-08-29 10:52:55,001 INFO (SchedulingConfig.java:24)- now time:2018-08-29 10:52:55
    2018-08-29 10:53:00,021 INFO (SchedulingConfig.java:24)- now time:2018-08-29 10:53:00

方法二:可能有的同学说,springboot我不喜欢加一堆乱七八糟的,我就要看着清晰、简洁。快活。OK 可以,有过基于xml开发经验的同学应该知道。使用定时器我只要在xml中做好配置,即可将我想要运行的方法按照我所配置的事件去运行,没错!但是springboot主张无xml,但是我们可以使用注解来让类变成xml,上代码。

    @Configuration          //证明这个类是一个配置文件
    @EnableScheduling       //打开quartz定时器总开关
    public class Timer {
    }
   
    OK 大功告成。(没了?  对。就这么简单。) 此做法和将@EnableScheduling这个注解写在springboot入口处的效果是一样的,两个写一个即可。接下来去配置你所要定时的方法即可。

Cron表达式对特殊字符的大小写不敏感,对代表星期的缩写英文大小写也不敏感。

表2 下面给出一些完整的Cron表示式的实例:
CRON表达式 含义
"0 0 12 * * ?" 每天中午十二点触发
"0 15 10 ? * *" 每天早上10:15触发
"0 15 10 * * ?" 每天早上10:15触发
"0 15 10 * * ? *" 每天早上10:15触发
"0 15 10 * * ? 2005" 2005年的每天早上10:15触发
"0 * 14 * * ?" 每天从下午2点开始到2点59分每分钟一次触发
"0 0/5 14 * * ?" 每天从下午2点开始到2:55分结束每5分钟一次触发
"0 0/5 14,18 * * ?" 每天的下午2点至2:55和6点至6点55分两个时间段内每5分钟一次触发
"0 0-5 14 * * ?" 每天14:00至14:05每分钟一次触发
"0 10,44 14 ? 3 WED" 三月的每周三的14:10和14:44触发
"0 15 10 ? * MON-FRI" 每个周一、周二、周三、周四、周五的10:15触发

Cron表达式生成器:https://cron.qqe2.com/

你可能感兴趣的:(SpringBoot添加定时器 @EnableScheduling)