SpringBoot功能持续更新

Posted likailun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot功能持续更新相关的知识,希望对你有一定的参考价值。

【定时任务】
1.启动总开关
@EnableScheduling加在@SpringBootApplication注解的start入口处,表示启动总开关

@SpringBootApplication
@EnableScheduling
public class start {
    public static void main(String[] args) throws Exception {
        SpringApplication.run(start.class, args);
    }
}

2.再单独给方法加配置
@Scheduled(cron="0/5 * * * * ?")每5秒打印当前时间

    @Scheduled(cron="0/5 * * * * ?")
    public void reportCurrentTime() {
        log.info("The time is now {}", dateFormat.format(new Date()));
    }

技术分享图片

备注:cron表达式,秒分时天等等,具体用到可以再百度




以上是关于SpringBoot功能持续更新的主要内容,如果未能解决你的问题,请参考以下文章

回归 | js实用代码片段的封装与总结(持续更新中...)

Spring Boot 持续更新中...

springboot 使用总结-持续更新……

jenkins持续集成springboot

Springboot2.x最全整合系列(持续更新)

SpringBoot核心技术梳理(持续更新)