在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>
运行结果:
不难看出,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.java
和Main.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>
运行结果:
从运行结果可以看出,两个对象的Message是不一样的,这就是Spring中的Bean的作用域prototype。
…
…