首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 开源软件 >

spring 中的scope 懂得

2013-11-14 
spring 中的scope 理解spring 中bean的scopesingleton默认的设置 适用于无状态的bean,以下设置是等价的be

spring 中的scope 理解
spring 中bean的scope

singleton   默认的设置 适用于无状态的bean,以下设置是等价的

<bean id="accountService" scope="singleton"/>


prototype 每次创建一个新的bean  适合有状态的bean

<bean id="accountService" scope="prototype"/>



Request, session, and global session  只有在web类型的ApplicationContext 工程中可用

例如XmlWebApplicationContext,以下是官方解释:

request
Scopes a single bean definition to the lifecycle of a single HTTP request; that is, each HTTP request has its own instance of a bean created off the back of a single bean definition. Only valid in the context of a web-aware Spring ApplicationContext.
session
Scopes a single bean definition to the lifecycle of an HTTP Session. Only valid in the context of a web-aware Spring ApplicationContext.
global session
Scopes a single bean definition to the lifecycle of a global HTTP Session. Typically only valid when used in a portlet context. Only valid in the context of a web-aware Spring ApplicationContext.

热点排行