Spring中Bean的作用域

在Spring中Bean的作用域需要在XML文件中声明,属性为scope。属性的值有如下五个:

属性值描述
singleton在spring IoC容器仅存在一个Bean实例,Bean以单例方式存在。
prototype每次从容器中调用Bean时,都返回一个新的实例。
request每次HTTP请求都会创建一个新的Bean,仅适用于WebApplicationContext环境。
session同一个HTTP Session共享一个Bean,不同Session使用不同的Bean,仅适用于WebApplicationContext环境。
global-session一般用于Portlet应用环境,该运用域仅适用于WebApplicationContext环境。

在这我们先讨论以下singleton和prototype这两种属性值。

Singleton是单例类型,就是在创建起容器时就同时自动创建了一个bean的对象,不管你是否使用,他都存在了,每次获取到的对象都是同一个对象。注意,Singleton作用域是Spring中的缺省作用域。
在XML声明Bean的单例模式的代码为:

<bean id="freeHedgehog" class="pers.lasting.spring.test.FreeHedgehog" scope="singleton">
</bean>

下面介绍一个例子:

步骤描述
1创建一个名称为 SpringExample 的项目,并且在创建项目的 src 文件夹中创建一个包 com.tutorialspoint。
2使用 Add External JARs 选项,添加所需的 Spring 库,在 Spring——安装Spring框架中有相关解释。
3在 pers.lasting.spring.test 包中创建 Java 类 FreeHedgehog 和 Main。
4在 src 文件夹中创建 Beans 配置文件 Beans.xml。
5最后一步是创建的所有 Java 文件和 Bean 配置文件的内容,并运行应用程序,解释如下。

FreeHedgehog.java

package pers.lasting.spring.test;

public class FreeHedgehog {

	private String message = "FreeHedgehog";
	public void setMessage(String message) {
		this.message = message;
	}
	public void getMessage() {
		System.out.println("Your Message is "+message);
	}
}

Main.java

package pers.lasting.spring.test;

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

@SuppressWarnings({ "resource" })
public class Main {
	
	
	public static void main(String[] args) {
			
		ApplicationContext context = new ClassPathXmlApplicationContext("Beans.xml");
		FreeHedgehog fh0 = (FreeHedgehog) context.getBean("freeHedgehog");
		System.out.println("fh0:");
		fh0.getMessage();
		fh0.setMessage("自由刺猬");
		fh0.getMessage();
		FreeHedgehog fh1 = (FreeHedgehog) context.getBean("freeHedgehog");
		System.out.println("fh1:");
		fh1.getMessage();
	}
}

Beans.xml

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">

   <bean id="freeHedgehog" class="pers.lasting.spring.test.FreeHedgehog" scope="singleton">
       <property name="message" value="Free Hedgehog"/>
   </bean>

</beans>

运行结果:
singleton运行结果.png

不难看出,fh1的message仍然是自由刺猬,并没有变为默认值FreeHedgehog,说明在此处是同一对象,这就是Spring中Bean的scope属性的singleton的用法(单例模式)。

下面就介绍prototype:
Prototype是原型类型,它在我们创建容器的时候并没有实例化,而是当我们获取bean的时候才会去创建一个对象,而且我们每次获取到的对象都不是同一个对象。根据经验,对有状态的bean应该使用prototype作用域,而对无状态的bean则应该使用singleton作用域。
在XML配置文件中的声明方式为:

   <bean id="freeHedgehog" class="pers.lasting.spring.test.FreeHedgehog" scope="prototype">
       <property name="message" value="Free Hedgehog"/>
   </bean>

实例:
FreeHedgehog.javaMain.java这两个文件同上,只更改了配置文件Beans.xml

Beans.xml

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">

   <bean id="freeHedgehog" class="pers.lasting.spring.test.FreeHedgehog" scope="prototype">
       <property name="message" value="Free Hedgehog"/>
   </bean>

</beans>

运行结果:

prototype运行结果.png

从运行结果可以看出,两个对象的Message是不一样的,这就是Spring中的Bean的作用域prototype。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值