`

Spring Bean的作用域:用Spring来解决Struts中Action的单实例问题

阅读更多

我们知道在Struts中Action是从map中拿出来的,是单实例的。那么在多线程调用的时候会出问题。

那么在Spring中通过getBean方法每调用一次,spring都会new一个实例给我们,所以可以利用这一点把Struts中action的创建交给Spring来处理。

Spring Bean的作用域:

Bean作用域

作用域 描述

singleton

在每个Spring IoC容器中一个bean定义对应一个对象实例。

prototype

一个bean定义对应多个对象实例。

request

在一次HTTP请求中,一个bean定义对应一个实例;即每次HTTP请求将会有各自的bean实例, 它们依据某个bean定义创建而成。该作用域仅在基于web的Spring ApplicationContext情形下有效。

session

在一个HTTP Session中,一个bean定义对应一个实例。该作用域仅在基于web的Spring ApplicationContext情形下有效。

global session

在一个全局的HTTP Session中,一个bean定义对应一个实例。典型情况下,仅在使用portlet context的时候有效。该作用域仅在基于web的Spring ApplicationContext情形下有效。

继续之前先回顾一下==与equals的用法

我们说==比较的是两个对象的地址,而equals比较的是两个对象的内容。所以

	String s1 = new String("sfsf");
	String s2 = new String("sfsf");
	System.out.println(s1==s2);
	System.out.println(s1.equals(s2));

 上面打印的结果为:

false
true

 

说明:s1,s2分别在栈中分配内存,即两个局部变量。那么他们的值存放的是地址。

new String的时候会在堆中分配对象的空间,显然调用了两次new分配了两个对象的地址。所以s1与s2的值即地址是不一样的,所以s1==s2返回为false.

而s1.equals(s2)比较的是两个对象的内容,显然对象内容都是sfsf所以返回为true.

 

相关知识如:

String s = new String("xyz");创建了几个String Object

  答:"xyz"本身作为字符常量,在汇编语言中应该作为常量放在数据段,Java有一个类似数据段的constant pool保存这个常量,在classloader加载这个类的时候就把"xyz"和这个类的其他一些信息放在constant   pool  new   String("xyz")根据常量"xyz"在heap上创建String对象所以,一共两个对象 
   String(String   original)  Initializes   a   newly   created   String   object   so   that   it   represents   the   same  sequence   of   characters   as   the   argument;   in   other   words,   the   newly   created   string   is   a   copy   of  the   argument   string.   

 

那么现在我们对从spring得到的对象进行测试。

 

测试代码:

package com.lwf.bean;

public class Bean1 {

}

 配置文件:

<?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"
		xmlns:tx="http://www.springframework.org/schema/tx"
		xsi:schemaLocation="
			http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
			http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
			http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
	<bean id="bean1" class="com.lwf.bean.Bean1"></bean>
	
	
</beans>

 测试类:

package com.lwf.client;

import junit.framework.TestCase;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.lwf.bean.Bean1;


public class Client extends TestCase {
	public void testScope() {
	
		ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext*.xml");
		Bean1 bean1 = (Bean1)ctx.getBean("bean1");
		Bean1 bean2 = (Bean1)ctx.getBean("bean1");
		System.out.println(bean1==bean2);
		System.out.println(bean1.equals(bean2));
		
		
	}
}

 

运行结果:

2010-05-19 14:34:07,419 INFO [org.springframework.context.support.ClassPathXmlApplicationContext] - Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@1c78e57: display name [org.springframework.context.support.ClassPathXmlApplicationContext@1c78e57]; startup date [Wed May 19 14:34:07 CST 2010]; root of context hierarchy
2010-05-19 14:34:07,654 INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] - Loading XML bean definitions from file [D:\workdirlocal\SpringBean\bin\applicationContext.xml]
2010-05-19 14:34:08,076 INFO [org.springframework.context.support.ClassPathXmlApplicationContext] - Bean factory for application context [org.springframework.context.support.ClassPathXmlApplicationContext@1c78e57]: org.springframework.beans.factory.support.DefaultListableBeanFactory@80fa6f
2010-05-19 14:34:08,123 INFO [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@80fa6f: defining beans [bean1]; root of factory hierarchy
true
true

 

测试发现bean1==bean2,bean1.equals(bean2)均返回为true。这说明默认的情况下,Spring采用的是单例Singleton模式创建对象,一旦创建,以后每次只是把引用返回。所以所有返回的对象都是同一个。

 

这个在配置文件中是可以修改的,如我们在bean的配置上增加scope属性:

<bean id="bean1" class="com.lwf.bean.Bean1" scope="prototype"></bean>

 

测试上面代码:

结果为:

2010-05-19 16:05:47,353 INFO [org.springframework.context.support.ClassPathXmlApplicationContext] - Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@1c78e57: display name [org.springframework.context.support.ClassPathXmlApplicationContext@1c78e57]; startup date [Wed May 19 16:05:47 CST 2010]; root of context hierarchy
2010-05-19 16:05:47,524 INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] - Loading XML bean definitions from file [D:\workdirlocal\SpringBean\bin\applicationContext.xml]
2010-05-19 16:05:47,899 INFO [org.springframework.context.support.ClassPathXmlApplicationContext] - Bean factory for application context [org.springframework.context.support.ClassPathXmlApplicationContext@1c78e57]: org.springframework.beans.factory.support.DefaultListableBeanFactory@80fa6f
2010-05-19 16:05:47,931 INFO [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@80fa6f: defining beans [bean1]; root of factory hierarchy
false
false

 

可以看到返回为false,false即每次创建的实例是不同的。我们在使用这一特性解决struts action单实例时就要这样配置。

 

Prototype作用域的bean会导致在每次对该bean请求(将其注入到另一个bean中,或者以程序的方式调用容器的getBean()方法)时都会创建一个新的bean实例。根据经验,对有状态的bean应该使用prototype作用域,而对无状态的bean则应该使用singleton作用域。

 

分享到:
评论

相关推荐

    Spring整合集成Struts1.2最简单例子

    - **Action类改造**:将Action类变为Spring的管理Bean,通常标记为`prototype`作用域,因为每个请求可能需要一个新的实例。 5. **Spring管理Struts的Action** 在Spring配置文件中,声明Struts Action为Bean,并...

    深入了解Spring中Bean的作用域和生命周期

    Singleton 作用域是 Spring 容器默认的作用域,在这种作用域中, Bean 实例是共享的,所有对该 Bean 的请求都会返回同一个实例。这种作用域适合无状态的 Bean,例如 DAO 层和 Service 层。 在 Spring 配置文件中,...

    基于java的企业级应用开发:Bean的作用域.ppt

    在企业级应用开发中,Java 是一种广泛使用的编程语言,特别是在Spring框架的支持下,能够构建高效、可扩展的系统。Spring框架的核心特性之一是...选择正确的Bean作用域是实现高效且健壮的企业级应用开发的关键步骤。

    Spring与Struts2整合

    在Spring的配置文件中定义bean,标记为`prototype`作用域,以便每次请求都能创建新的实例。 5. **Action类的注入** 在Action类中,可以使用@Autowired注解进行依赖注入,或者在Spring配置文件中声明并配置需要注入...

    Spring整合Struts 的详细开发文档

    - 在 Struts 的动作映射配置中,不再直接定义 Action 类的全限定名,而是使用 Spring 定义的 Bean ID。例如,如果 Spring 配置文件中定义了一个名为 `myAction` 的 Bean,那么在 Struts 配置中应该引用这个 ID。 5...

    Spring,hibernate,struts的面试笔试题(含答案)

    通过这些知识点,我们可以看到Spring、Hibernate和Struts各自解决了企业级应用开发中的不同问题。Spring主要提供了一种轻量级的DI容器和AOP机制来帮助管理对象的生命周期和横切关注点;Hibernate则为Java应用程序...

    spring与struts2整合

    2. 第二种方法是使用Spring插件,让Struts2直接从Spring容器中获取Action实例。在这种情况下,Struts2配置文件中的`class`属性不再指定具体类,而是Spring Bean的ID: ```xml &lt;action name="LoginAction" class=...

    struts,与spring整合

    这个插件使得Spring能够接管Struts的Action实例化过程,保证每个Action实例都是由Spring容器管理的。 4. **配置文件**:在整合过程中,需要在Spring的配置文件(如`applicationContext.xml`)中定义Action类,并...

    Struts2+Spring整合所需完整稳定可用jar包

    2. **Struts2的Spring插件**:Struts2提供了一个Spring插件,该插件允许Struts2从Spring容器中获取Action实例,同时处理Action的依赖注入。 3. **共享Session作用域**:在整合后,Struts2和Spring可以共享Session...

    struts2+hibernate3.2+spring2.0配置+入门实例

    【Struts2+Hibernate3.2+Spring2.0配置+入门实例】 本文将详细介绍如何配置和构建一个基于Struts2、Hibernate3.2和Spring2.0的企业级Java应用入门实例。首先,我们理解整体架构,这有助于我们更好地了解各个组件的...

    struts_hibernate_spring集成

    这意味着Action Bean的ID被更改为Name,其Class和作用域也在Spring的配置中定义,通常作用域设置为`prototype`,以便每次请求都能创建一个新的Action实例。 #### 3. Spring配置深入 Spring的配置文件负责管理Bean...

    Spring+Hibernate+Struts

    "spring_scope"可能涵盖了Spring的Bean作用域,如Singleton、Prototype、Request、Session等,以及它们在不同场景下的应用。 Hibernate是一个对象关系映射(ORM)框架,简化了数据库操作。"spring_hibernate_1"和...

    spring+struts+Hibernate面试题

    - **Bean 的作用域**:Spring 支持多种作用域,包括 singleton、prototype、request、session 和 application。 - **singleton**:单例模式,容器中只有一个 Bean 实例。 - **prototype**:原型模式,每次获取时...

    struts2+hibernate+spring整合

    4. 在Spring配置文件中定义Action类Bean,并设置为原型(prototype)作用域。 5. 配置Hibernate的SessionFactory和DataSource。 在实际开发中,我们通常按照数据库层(POJO和Hibernate映射)、数据访问层(DAO)、...

    Struts2+Spring2整合范例

    - 在使用Spring时,注意Bean的作用域,如singleton或prototype,以适应不同的需求。 8. **范例中的S22S2**: 压缩包文件S22S2可能包含了上述整合过程所需的所有文件,包括源代码、配置文件、库文件等。解压后,...

    struts1,struts2,webwork,线程安全问题

    WebWork框架与Struts1相似,也存在线程安全问题,但它提供了更多的配置选项来解决这些问题。 - **WebWork中Action实例管理机制:** - WebWork框架默认也会复用`Action`实例,但可以通过配置文件来改变这种行为,...

    第17讲 Spring、hibernate和Struts2的整合

    ②把action交给spring管理,即在spring配置文件中定义action Bean并使用依赖注入功能在action中注入业务Bean,同时修改作用域。 ③在struts.xml中的class使用第②步中所定义的action Bean 的id属性值。

    struts2+spring2+hibernate3.1应用实例

    1. **applicationContext.xml**:这是Spring的核心配置文件,用于定义Bean的定义,包括它们的依赖关系、初始化参数、作用域等。在这里,可能会配置Spring的DataSource、SessionFactory(Hibernate的配置)、Service...

    Struts2+Spring3+Hibernate3整合文档

    由于Struts2中的Action对象是针对每个请求生成一个新的实例,而Spring默认使用`singleton`作用域来管理Bean。为了与Struts2保持一致,需要将Action的Scope设置为`prototype`或`session`。 - **`prototype`**:为每...

    Spring+Hibernate+Struts2整合文档

    对于每个Action,其作用域(scope)通常被设定为`prototype`,这意味着每次请求都会创建一个新的Action实例,这有助于避免线程安全问题,同时可以更好地利用Spring的依赖注入特性。例如: ```xml &lt;action name=...

Global site tag (gtag.js) - Google Analytics