Spring-boot调度程序在没有@EnableScheduling批注的情况下运行

前端之家收集整理的这篇文章主要介绍了Spring-boot调度程序在没有@EnableScheduling批注的情况下运行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我按照这个例子在示例项目中创建了一个计划任务:https://spring.io/guides/gs/scheduling-tasks

它说,@ EnableScheduling确保创建后台任务执行程序.没有它,没有任何安排.

但是,我错误地没有使用它.怎么还能运作?

的pom.xml

其他课程:

@SpringBootApplication
public class DemoApplication {

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

@Component
public class ScheduledTaskRunner {

    Logger log = LoggerFactory.getLogger(ScheduledTaskRunner.class);

    @Scheduled(cron = "0/1 * * * * *")
    public void run(){
        log.info("Hello");
    }
}

是不是计划的任务不应该运行?

最佳答案
你的代码添加了spring-boot-starter-actuator,当添加了一个调度程序时.执行器使用该调度程序来安排度量的自动导出.

这个代码在MetricExportAutoConfiguration中,并已添加到Spring Boot 1.3.0中.

因此,如果你删除执行器调度将不再工作.

原文链接:https://www.f2er.com/spring/431773.html

猜你在找的Spring相关文章