title | date | order | categories | tags | permalink | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Spring Bean 作用域 |
2022-12-21 03:42:00 -0800 |
6 |
|
|
/pages/8289f5/ |
来源 | 说明 |
---|---|
singleton | 默认 Spring Bean 作用域,一个 BeanFactory 有且仅有一个实例 |
prototype | 原型作用域,每次依赖查找和依赖注入生成新 Bean 对象 |
request | 将 Spring Bean 存储在 ServletRequest 上下文中 |
session | 将 Spring Bean 存储在 HttpSession 中 |
application | 将 Spring Bean 存储在 ServletContext 中 |
Spring 容器没有办法管理 prototype Bean 的完整生命周期,也没有办法记录实例的存在。销毁回调方法将不会执行,可以利用 BeanPostProcessor
进行清扫工作。
- 配置
- XML -
<bean class="..." scope = “request" />
- Java 注解 -
@RequestScope
或@Scope(WebApplicationContext.SCOPE_REQUEST)
- XML -
- 实现
- API - RequestScope
- 配置
- XML -
<bean class="..." scope = “session" />
- Java 注解 -
@SessionScope
或@Scope(WebApplicationContext.SCOPE_SESSION)
- XML -
- 实现
- API - SessionScope
- 配置
- XML -
<bean class="..." scope = “application" />
- Java 注解 -
@ApplicationScope
或@Scope(WebApplicationContext.SCOPE_APPLICATION)
- XML -
- 实现
- API - ServletContextScope
-
实现 Scope
org.springframework.beans.factory.config.Scope
-
注册 Scope
- API -
org.springframework.beans.factory.config.ConfigurableBeanFactory#registerScope
- API -
-
配置
<bean class="org.springframework.beans.factory.config.CustomScopeConfigurer"> <property name="scopes"> <map> <entry key="..."> </entry> </map> </property> </bean>
Spring 內建的 Bean 作用域有几种?
singleton、prototype、request、session、application 以及 websocket
singleton Bean 是否在一个应用是唯一的?
否。singleton bean 仅在当前 Spring IoC 容器(BeanFactory)中是单例对象。
application Bean 是否可以被其他方案替代?
可以的,实际上,“application” Bean 与“singleton” Bean 没有本质区别