20.spring源码之@Bean注解

上篇文章提了下@ImportSource注解,这篇文章接着代码往后面走。

1.doPorcessConfigurationClass()方法

20.spring源码之@Bean注解

20.spring源码之@Bean注解

2.进入retrieveBeanMethodMatadata()方法

收集有@Bean注解

20.spring源码之@Bean注解

3.进入addBeanMethod()方法

20.spring源码之@Bean注解

放把beanMethods容器中

20.spring源码之@Bean注解

 

在处理@Bean注解后面还有个processInterfaces()方方法,这个方法就是处理接口中的@Bean注解,也是放入beanMethods容器中。到这里doProcessConfigurationClass()就讲完了。也就是parse()方法讲完了。

parse()方法呢,就是通过@ComponentScan把有@Component注解的类封装成BeanDefiniton,然后有其他特殊注解的放到对应的容器中。

 

上一篇:Failed to convert value of type 'java.lang.String' to required type 'java.util.Date


下一篇:Vue3 getters打印结果是Proxy对象,怎么获取其中的值?