LD is tigger forever,CG are not brothers forever, throw the pot and shine forever.
Modesty is not false, solid is not naive, treacherous but not deceitful, stay with good people, and stay away from poor people.
talk is cheap, show others the code,Keep progress,make a better result.
Survive during the day and develop at night。
目录
概述
Spring官方文档中给出的bean的scope有五种。
singleton
prototype
request
session
global session
实现思路分析
String SCOPE_SINGLETON = ConfigurableBeanFactory.SCOPE_SINGLETON;
String SCOPE_PROTOTYPE = ConfigurableBeanFactory.SCOPE_PROTOTYPE;
包括官网文档中没有列出来的 servletContenxt 、thread;SpringCloud提供的refresh等。
2、singletonScope与prototypeScope
singletonScope,即单例Bean,顾名思义具有单例模式的所有特性,在spring容器里面只会初始化出一个bean实例,存于缓存中。后续的请求都公用这个对象。
最简单的创建单例bean的方式,就是直接在类名上面加@Service注解。
prototypeScope,即原型Bean,每次请求时都会创建新的bean实例直接使用。
创建原型Bean,需要显示指定scope属性。
3、两种bean的创建过程
相关工具如下:
分析:
小结:
主要讲述了一些Spring的单例bean与原型bean的区别和创建过程, 里面有许多不足,请大家指正~
参考资料和推荐阅读
1.链接: 参考资料.