Spring框架裡註解@Autowired的工作原理

i042416發表於2020-07-09

Suppose I have a bean named HelloWorld which has a member attribute points to another bean User.

Spring框架裡註解@Autowired的工作原理

With annotation @Autowired, as long as getBean is called in the runtime, the returned HelloWorld instance will automatically have user attribute injected with User instance.

Spring框架裡註解@Autowired的工作原理

How is this behavior implemented by Spring framework?

(1) in Spring container implementation’s refresh method, all singleton beans will be initialized by default.

Spring框架裡註解@Autowired的工作原理

When the HelloWorld bean is initialized:

Spring框架裡註解@Autowired的工作原理

Since it has the following source code:

@Autowiredprivate User user;

In the runtime, this annotation is available in metadata via reflection. In metadata structure below, the targetClass points to HelloWorld bean, and injectedElements points to the User class to be injected.

Spring框架裡註解@Autowired的工作原理


Spring框架裡註解@Autowired的工作原理

(2) In doResolveDependency, the definition for User bean is searched based on this.beanDefinitionNames ( list in DefaultListableBeanFactory ):

Spring框架裡註解@Autowired的工作原理

Once found, the found result is added to array candidateNames:

Spring框架裡註解@Autowired的工作原理

Then the constructor of User bean class is called ( still triggered by getBean call ), the user instance is created by calling constructor:

The created user instance together with its name “user” is inserted to the map matchingBeans.

  1. Finally the user reference is set to user attribute of HelloWorld instance via reflection. Here the variable bean in line 569 points to HelloWorld instance, and value points to user instance.

Once field.set(bean, value) is done, we can observe in debugger that the user attribute in HelloWorld instance is already injected successfully.

要獲取更多Jerry的原創文章,請關注公眾號"汪子熙":


Spring框架裡註解@Autowired的工作原理


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24475491/viewspace-2703494/,如需轉載,請註明出處,否則將追究法律責任。

相關文章