1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-20 22:17:09 +08:00

Update Spring常见问题总结.md

This commit is contained in:
Chen_shilong 2021-03-01 15:07:07 +08:00 committed by GitHub
parent dfc7c8d15d
commit 192d86b5f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -175,7 +175,7 @@ public OneService getService(status) {
### 5.5 Spring 中的 bean 生命周期?
这部分网上有很多文章都讲到了,下面的内容整理自:<https://yemengying.com/2016/07/14/spring-bean-life-cycle/> ,除了这篇文章,再推荐一篇很不错的文章 <https://www.cnblogs.com/zrtqsk/p/3735273.html>
这部分网上有很多文章都讲到了,下面的内容整理自: ~~https://yemengying.com/2016/07/14/spring-bean-life-cycle/~~ (原作者可能不再维护这个博客,连接无法访问,可通过其 Github 仓库访问 <https://github.com/giraffe0813/giraffe0813.github.io>) ,除了这篇文章,再推荐一篇很不错的文章 <https://www.cnblogs.com/zrtqsk/p/3735273.html>
- Bean 容器找到配置文件中 Spring Bean 的定义。
- Bean 容器利用 Java Reflection API 创建一个Bean的实例。