Spring-Boot-实现一个简单的分布式定时任务(应用篇)
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableScheduling;
@SpringBootApplication
@EnableScheduling
public class DistributedSchedulerApplication {
public static void main(String[] args) {
SpringApplication.run(DistributedSchedulerApplication.class, args);
}
}
这段代码是一个Spring Boot应用的入口类,它使用了@SpringBootApplication
注解来启用Spring应用程序的自动配置功能,并且使用@EnableScheduling
注解来启用定时任务的功能。这个应用程序可以部署在多个实例上,并且通过这种方式配置的定时任务会在每个实例上按预定的规则执行。
评论已关闭