Spring Bean 作用域
Spring Bean 作用域
Spring Bean 作用域
来源 | 说明 |
---|---|
singleton | 默认 Spring Bean 作用域,一个 BeanFactory 有且仅有一个实例 |
prototype | 原型作用域,每次依赖查找和依赖注入生成新 Bean 对象 |
request | 将 Spring Bean 存储在 ServletRequest 上下文中 |
session | 将 Spring Bean 存储在 HttpSession 中 |
application | 将 Spring Bean 存储在 ServletContext 中 |
“singleton” Bean 作用域
“prototype” Bean 作用域
Spring 容器没有办法管理 prototype Bean 的完整生命周期,也没有办法记录实例的存在。销毁回调方法将不会执行,可以利用 BeanPostProcessor
进行清扫工作。
“request” Bean 作用域
- 配置
- XML -
<bean class="..." scope = “request" />
- Java 注解 -
@RequestScope
或@Scope(WebApplicationContext.SCOPE_REQUEST)
- XML -
- 实现
- API - RequestScope
“session” Bean 作用域
- 配置
- XML -
<bean class="..." scope = “session" />
- Java 注解 -
@SessionScope
或@Scope(WebApplicationContext.SCOPE_SESSION)
- XML -
- 实现
- API - SessionScope
“application” Bean 作用域
- 配置
- XML -
<bean class="..." scope = “application" />
- Java 注解 -
@ApplicationScope
或@Scope(WebApplicationContext.SCOPE_APPLICATION)
- XML -
- 实现
- API - ServletContextScope
自定义 Bean 作用域
实现 Scope
org.springframework.beans.factory.config.Scope
注册 Scope
- API -
org.springframework.beans.factory.config.ConfigurableBeanFactory#registerScope
- API -
配置
1
2
3
4
5
6
7
8<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 没有本质区别