Skip to content

Commit

Permalink
Update 2 posts
Browse files Browse the repository at this point in the history
- Spring AutowiredAnnotationBeanPostProcessor 的源码分析
- Spring 中 @propertysource 注解的使用和源码分析
  • Loading branch information
moralok committed Dec 9, 2023
1 parent 578069c commit 8b5f90d
Show file tree
Hide file tree
Showing 2 changed files with 158 additions and 23 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -227,4 +227,8 @@ private void addPropertySource(PropertySource<?> propertySource) {

可以适当地将添加属性源和使用属性分开看待,`Environment` 是它们产生联系的枢纽,`@PropertySource` 注解的处理过程是 `@Configuration` 注解的处理过程的一部分,在文件中的配置转换成为 `Environment` 中的 `PropertySource` 后,如何使用它们是独立的一件事情。

<div style="width:70%;margin:auto">{% asset_img "Snipaste_2023-12-07_22-49-22.png" Environment 中的 MutablePropertySources %}</div>
<div style="width:70%;margin:auto">{% asset_img "Snipaste_2023-12-07_22-49-22.png" Environment 中的 MutablePropertySources %}</div>

关于搭配使用的 `@Value` 注解是如何工作的,可以参考文章:

- - {% post_link 'source-code-analysis-of-AutowiredAnnotationBeanPostProcessor-in-Spring' 'Spring AutowiredAnnotationBeanPostProcessor 的源码分析' %}
Loading

0 comments on commit 8b5f90d

Please sign in to comment.