如何理解spring加載類放到容器里面的過程,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
工作三年,初探得Spring原理,現在分享一下從宏觀上理解一下Spring啟動是如何加載Bean的。我們知道Spring所有的bean都是放在容器里面的,Spring的頂級容器BeanFactory定義了容器的基本規(guī)范,最直白的說法就是定義了如何獲取Bean的方法,那么既然能從容器中獲取Bean那就必須先把JavaBean放到容器里面。放到里面的是對象,既然是對象那就必須實例化、初始化,我們對象最簡單的就是new出來,也有通過反射獲取類全稱用getInstance來實例化的,那我們就從宏觀上理解,Spring將對象實例化后放到容器里面,然后我們再從容器里面拿出來用。所以問題就來了,從哪里獲取類全稱呢?對,你腦子里現在第一個反映就是XML,就是它,Spring通過解析XML,拿到所有的類全稱,通過反射進行實例化,放到容器里面的,我們知道并不是所有的類都是寫在XML里面的,還有很多注解:@Comonent、@Service、@Controller等等,這種的是怎么拿到的呢?不知道你們是否記得XML里面有一個context:component-scan標簽,這個標簽會掃描配置包下面帶有上述注解的所有類進行加載。這里們首先從宏觀上理解了,Spring從拿到所有要管理的類全稱實例化、初始化后放到容器里面去的來龍去脈了,但是JavaBean是如何變成Spring管理的bean的呢?其實在實例化之前Spring還做了許多的預處理操作后后置處理,先眼熟一下這個接口BeanDefinitionRegistryPostProcessor,
public interface BeanDefinitionRegistryPostProcessor extends BeanFactoryPostProcessor { /** * Modify the application context's internal bean definition registry after its * standard initialization. All regular bean definitions will have been loaded, * but no beans will have been instantiated yet. This allows for adding further * bean definitions before the next post-processing phase kicks in. * @param registry the bean definition registry used by the application context * @throws org.springframework.beans.BeansException in case of errors */ void postProcessBeanDefinitionRegistry(BeanDefinitionRegistry registry) throws BeansException; }
public interface BeanFactoryPostProcessor { /** * Modify the application context's internal bean factory after its standard * initialization. All bean definitions will have been loaded, but no beans * will have been instantiated yet. This allows for overriding or adding * properties even to eager-initializing beans. * @param beanFactory the bean factory used by the application context * @throws org.springframework.beans.BeansException in case of errors */ void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException; }
postProcessBeanDefinitionRegistry在對象實例化之前被調用,這個方法會修改Bean定義,mybatis就是通過實現此接口,將mapper類都修改成了MapperFactoryBean,后續(xù)會詳細講解次接口。然后再眼熟一下BeanPostProcessor這個接口,
public interface BeanPostProcessor { Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException; Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException; }
在加載之前Spring會找到所有BeanPostProcessor這個接口下的所有子類并加載,實現這個接口的所有類,在初始化之前會執(zhí)行postProcessBeforeInitializtion方法,初始化之后執(zhí)行postProcessAfterInitializtion方法。
關于如何理解spring加載類放到容器里面的過程問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注創(chuàng)新互聯行業(yè)資訊頻道了解更多相關知識。