面试知识点
Posted redcool
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了面试知识点相关的知识,希望对你有一定的参考价值。
面试知识点
1. spring bean生命周期
2. spring-bean的循环依赖以及解决方式
参考博客: https://blog.csdn.net/u010853261/article/details/77940767
https://blog.csdn.net/qq924862077/article/details/73926268
主要解决方式:使用三级缓存
singletonObjects: 一级缓存, Cache of singleton objects: bean name --> bean instance
earlySingletonObjects: 二级缓存, Cache of early singleton objects: bean name --> bean instance 提前曝光的BEAN缓存
singletonFactories: 三级缓存, Cache of singleton factories: bean name --> ObjectFactory
以上是关于面试知识点的主要内容,如果未能解决你的问题,请参考以下文章