如何知道Spring Boot应用程序中正在运行的计划作业?

时间:2019-08-28 10:31:26

标签: spring-boot spring-scheduled

我们可以在Spring启动应用程序中使用@Scheduled轻松安排作业。

是否可以使用任何其他端点来了解当前正在运行的计划作业?

1 个答案:

答案 0 :(得分:1)

是的,您需要将Spring boot作动器包括在内。然后,您可以使用ScheduledTasks端点检查计划的任务:

https://docs.spring.io/spring-boot/docs/current/reference/html/production-ready-endpoints.html

只需将以下内容添加到您的pom.xml

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-actuator</artifactId>
    </dependency>

可通过/ actuator / scheduledtasks访问端点