Spring Bean 的生命周期,如何被管理的?

Spring Bean的管理

Spring 只帮我们管理单例模式(singleton)Bean的生命周期,对于prototype的Bean,Spring在创建好交给使用者之后则不会再管理后续的生命周期。

 

生命周期流程图:

Spring Bean的完整生命周期:

从创建Spring容器开始------> 直到最终Spring容器销毁Bean。

参考

https://blog.csdn.net/Apeopl/article/details/82964799

https://blog.csdn.net/weixin_40834464/article/details/82829999

https://blog.csdn.net/w_linux/article/details/80086950

Spring Bean 的生命周期,如何被管理的?_第1张图片

你可能感兴趣的:(spring)