想要回答这个问题,就要对Spring的生命周期有一定的了解,今天我们就来回顾一下IOC的生命周期及Spring提供给开发人员的扩展点,当然了,我们今天只聊Bean加载完成后的事儿 。
老规矩 先应用后源码 ,开搞~
AAA BBB CCC 均是spring管理的bean
@Component
public class AAA {
public AAA() {
System.out.println("AAA init");
}
}
生命周期中倒数第二步
// Instantiate all remaining (non-lazy-init) singletons.
finishBeanFactoryInitialization(beanFactory);
SmartInitializingSingleton接口是在所有的Bean实例化完成以后,Spring回调的方法, 所以这里也是一个扩展点,可以在单例bean全部完成实例化以后做处理。
【配置类】
package com.artisan.beanLoadedExtend.smartinit;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
@Configuration
@ComponentScan("com.artisan.beanLoadedExtend")
public class SmartInitConfig {
}
【扩展类 implements SmartInitializingSingleton 】
package com.artisan.beanLoadedExtend.smartinit;
import org.springframework.beans.factory.SmartInitializingSingleton;
import org.springframework.stereotype.Component;
@Component
public class SmartInitExtend implements SmartInitializingSingleton {
@Override
public void afterSingletonsInstantiated() {
System.out.println("all singleton beans loaded , 自定义扩展here ");
}
}
【测试】
package com.artisan.beanLoadedExtend.smartinit;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
public class Test {
public static void main(String[] args) {
AnnotationConfigApplicationContext ac = new AnnotationConfigApplicationContext(SmartInitConfig.class);
}
}
生命周期的最后一步是finishRefresh();,这里面中有一个方法是publishEvent
所以这里也可以进行扩展,监听ContextRefreshedEvent事件 。
【配置类】
package com.artisan.beanLoadedExtend.listener;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
@Configuration
@ComponentScan("com.artisan.beanLoadedExtend")
public class Config {
}
【基于接口的方式】
package com.artisan.beanLoadedExtend.listener;
import org.springframework.context.ApplicationListener;
import org.springframework.context.event.ContextRefreshedEvent;
import org.springframework.stereotype.Component;
@Component
public class BeanLoadedExtendListener implements ApplicationListener<ContextRefreshedEvent> {
@Override
public void onApplicationEvent(ContextRefreshedEvent event) {
System.out.println("监听到ContextRefreshedEvent, 自定义扩展here ");
}
}
【基于注解的方式】
package com.artisan.beanLoadedExtend.listener;
import org.springframework.context.event.ContextRefreshedEvent;
import org.springframework.context.event.EventListener;
import org.springframework.stereotype.Component;
@Component
public class BeanLoadedExtendListenerByAnno {
@EventListener(ContextRefreshedEvent.class)
public void extend(){
System.out.println("基于@EventListener的监听");
}
}
二选一,推荐基于注解的方式
【测试】
package com.artisan.beanLoadedExtend.listener;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
public class Test {
public static void main(String[] args) {
AnnotationConfigApplicationContext ac = new AnnotationConfigApplicationContext(Config.class);
}
}