springboot-定时任务源码分析
前言我们都知道开启 springboot的定时任务需要先使用 @EnableScheduling 注解,在可以开启,那么 @EnableScheduling 就是定时任务的源头,所以先从 @EnableScheduling 开始分析
@EnableScheduling
这个注解核心就是用于控制是否注入 SchedulingConfiguration
具体可以了解下 @Import() 注解,为什么使用这个注解就可以,本质上是一个开关,开了就拥有,删除就没用…
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Import(SchedulingConfiguration.class)
@Documented
public @interface EnableScheduling {
}
SchedulingConfiguration
@Configuration
@Role(BeanDefinition.ROLE_INFRASTRUCTURE)
public class SchedulingConfiguration {
@Bean(name = TaskManagementConfigUtils.SCHEDULED_ANNOTATION_PROCESSOR_BEAN_NAME)
@Role(BeanDefinition.ROLE_INFRASTRUCTURE)
public ScheduledAnnotationBeanPostProcessor scheduledAnnotationProcessor() {
return new ScheduledAnnotationBeanPostProcessor();
}
}
ScheduledAnnotationBeanPostProcessor
定时任务注解的 BeanPostProcessor,主要是用于Spring容器在创建bean的过程中,能够使用我们自己定义的逻辑,对创建的bean做一些处理,或者执行一些业务,
可以说 Scheduled 的初始化等动作都是当前类在做…
public class ScheduledAnnotationBeanPostProcessor
implements ScheduledTaskHolder, MergedBeanDefinitionPostProcessor, DestructionAwareBeanPostProcessor,
Ordered, EmbeddedValueResolverAware, BeanNameAware, BeanFactoryAware, ApplicationContextAware,
SmartInitializingSingleton, ApplicationListener<ContextRefreshedEvent>, DisposableBean {
// 内容太多了,拆解分析
}
主要会通过实现类,在 Bean 在执行的过程中,各种回调, 比如实现了
BeanPostProcessor
在初始化的时候
而 ScheduledAnnotationBeanPostProcessor 实现了,估也会被执行…
暂定
来活了…