Bean scopes主要是指如何创建bean对象,SPring通过配置文件而不是java类中定义Bean的scope。Spring已定定义了五种scope:singleton、prototype、request、session和globalSession。其中后三种只应用于基于web的
ApplicationContext。
1、singleton
Spring默认scope就是singleton。Spring只管理一份singleton bean的共享对象,该对象存储在singleton beans缓存中。 所有请求都从容器中返回同一个bean对象。
Spring中的singleton与GOF中的单例有有区别的。GOF中的单例在每个ClassLoader只会有一个对象。而Spring中的singleton是指每个Spring container中会有一个对象。在XML中定义如下:
<bean id="accountService" class="com.foo.DefaultAccountService"/>
<!-- the following is equivalent, though redundant (singleton scope is the default) -->
<bean id="accountService" class="com.foo.DefaultAccountService" scope="singleton"/>
2、prototype
不是singleton,每次请求返回的都是新创建对象。对于有状态的bean采用prototype而无状态的采用singleton.
说明:数据访问对象(DAO)通常不配置为原型,因为一个典型的DAO不会持有任何会话状态。
XML配置如下:
<bean id="accountService" class="com.foo.DefaultAccountService" scope="prototype"/>
singleton bean中依赖prototype bean
根据IOC原则,Bean在实例化时已经把依赖的Bean注入,因此在singleton bean中,其依赖的
prototype bean是唯一的实例。这与设计的prototype相违背,解决办法是singleton bean中实现
ApplicationContextAware接口,当singleton bean中需要时都从
ApplicationContext中取
prototype bean。样例如下:
package com.gll.spring.ioc.model;
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
/**
* Created by Administrator on 2015/4/5.
*/
public class ScopeExample implements ApplicationContextAware {
private ApplicationContext applicationContext;
private ProtoTypeExapmle protoTypeExapmle;
public ApplicationContext getApplicationContext() {
return applicationContext;
}
public ProtoTypeExapmle getProtoTypeExapmle() {
return protoTypeExapmle;
}
public void setProtoTypeExapmle(ProtoTypeExapmle protoTypeExapmle) {
this.protoTypeExapmle = applicationContext.getBean(ProtoTypeExapmle.class);
}
@Override
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
this.applicationContext = applicationContext;
}
}
package com.gll.spring.ioc.model;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;
/**
* Created by Administrator on 2015/4/5.
*/
@Component
@Scope("prototype")
public class ProtoTypeExapmle {
}
3、Request scope
<bean id="loginAction" class="com.foo.LoginAction" scope="request"/>
当每一次一个HTTP 请求loginAction 时,Spring容器会全新实例化LoginAction 对象。这就是Request 级别的scope,每一次请求都对应一个全新的LoginAction 对象,因而在请求过程中可任意改变LoginAction 实例的属性,当Request 结束后,其对应的LoginAction对象也销毁了。
4、Session scope
<bean id="userPreferences" class="com.foo.UserPreferences" scope="session"/>
Spring容器会为每一个活跃的http session创建一个全新的UserPreferences对象。与http session一起销毁。
5、Global session scope
<bean id="userPreferences" class="com.foo.UserPreferences" scope="globalSession"/>
表示在一个全局的HttpSession下会拥有一个单独的实例,通常用于Portlet环境下。
当需要把一个http级别的scope的对象注入到其他bean中的时候,需要在声明的http级别的scope的对象中加入<aop:scoped-proxy/>,如下面的userPreferences对象:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">
<!-- an HTTP Session-scoped bean exposed as a proxy -->
<bean id="userPreferences" class="com.foo.UserPreferences" scope="session">
<!-- this next element effects the proxying of the surrounding bean -->
<aop:scoped-proxy/>
</bean>
<!-- a singleton-scoped bean injected with a proxy to the above bean -->
<bean id="userService" class="com.foo.SimpleUserService">
<!-- a reference to the proxied userPreferences bean -->
<property name="userPreferences" ref="userPreferences"/>
</bean>
</beans>
- 大小: 91.3 KB
- 大小: 89.9 KB
分享到:
相关推荐
NULL 博文链接:https://moshow.iteye.com/blog/1607598
自定义 Spring Bean Scopes 用于默认设置不起作用的情况 可用范围 Route Scope - 提供每个路由执行范围的范围 页面范围 - 提供每页范围的范围 线程范围 - 提供每个线程范围的范围 继承的线程范围 - 提供每个线程...
#### Spring Bean Scopes Bean的作用域决定了Bean的生存周期,Spring支持多种作用域,如singleton、prototype等。Singleton作用域下,整个容器期间只有一个Bean实例;Prototype作用域下,每次请求都会创建一个新的...
Spring.Bean.Scopes.Example-master这个压缩包很可能是包含了一个Spring Boot项目,该项目内有示例代码,演示了如何配置和使用这两种Bean Scope。项目中可能包括以下部分: - 配置类(Configuration Classes):...
4. **Bean的作用域(Scopes)** - Spring提供了多种Bean的作用域,包括单例(Singleton)、原型(Prototype)、请求(Request)、会话(Session)和全局会话(Global Session)。这些作用域决定了Bean的实例化策略...
2. **bean的作用域(Bean Scopes)** - **2.1 Singleton**:每个bean定义只有一个实例,全局共享。 - **2.2 Prototype**:每个请求(或配置)都会创建一个新的bean实例。 - **2.3 Request**:在Web应用中,每个...
- **New bean scopes**: 添加了新的作用域类型,如`request`、`session`等,用于更好地管理和控制Bean的生命周期。 - **Extensible XML authoring**: 允许用户通过自定义命名空间扩展Spring的配置文件结构,提供了更...
- 介绍了自动装配机制,即如何让Spring自动找到合适的bean并注入到其他bean中。 - **3.4.6 Method injection** - 如何通过方法参数进行依赖注入。 - **3.5 Bean作用域** - **3.5.1 单例作用域** - 单例bean在...
- **Beans scopes**:解释了不同作用域下的Bean实例化行为。 - **Customizing the nature of a bean**:讲述了如何定制Bean的行为,如初始化、销毁方法等。 - **Bean definition inheritance**:说明了如何通过继承...
- 新的Bean作用域(New bean scopes) Spring 2.5引入了更多的Bean作用域,如prototype(原型)和session,使得开发者可以更灵活地控制Bean的生命周期。 - 更简单的XML配置(Easier XML configuration) 2.5版本...
- **The Beans**:Bean是Spring框架中的基本单位,每一个Bean都有一个唯一的名称,并且可以在配置文件中定义其初始化参数、依赖关系等。 - **Using the Container**:一旦容器被实例化,就可以通过它来获取所需的...
3. **Bean Scopes**: Spring定义了多种Bean的作用域,包括Singleton(单例)、Prototype(原型)、Request、Session、Global Session等。Singleton Bean在整个容器生命周期内只有一个实例,而Prototype Bean每次...
- **New bean scopes**:引入了新的bean作用域,如`request`和`session`等,这些作用域特别适用于Web应用中的特定场景。 - **Extensible XML authoring**:通过提供更多的自定义选项,Spring 2.0使得XML配置更加灵活...
在 Spring 中,singleton scope 是默认的 scopes,表示 Bean 只会被实例化一次,并且可以被所有的应用程序上下文访问。 2.Factory Pattern:工厂模式,提供一种创建对象的方式,封装创建对象的细节。 在 Spring 中...
动作实现可以采用多种方式,如Java类、Groovy脚本、Spring Bean等。Spring Web Flow的灵活性使得开发者可以根据具体需求选择最适合的动作实现方式。 #### 6.6 Action exceptions 动作执行过程中可能会抛出异常,...
然后是**豆范围(Bean Scopes)**,Spring支持多种Bean的作用域,包括单例(Singleton)、原型(Prototype)、请求(Request)、会话(Session)等。理解不同作用域的含义和使用场景是确保应用程序正确运行的关键。...
Aliasing a bean outside the bean definition ................................................ 28 Instantiating beans .......................................................................................
Aliasing a bean outside the bean definition ................................................ 28 Instantiating beans .......................................................................................
clients.inMemory().withClient("client").secret("secret").authorizedGrantTypes("authorization_code", "refresh_token").scopes("read", "write"); } } ``` TokenStore TokenStore 负责存储 access_token。...