springboot-定时任务源码分析

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 实现了,估也会被执行…

暂定

来活了…

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值