Spring - Bean 范围


定义 <bean> 时,您可以选择声明该 bean 的范围。例如,要强制 Spring 在每次需要时生成一个新的 bean 实例,您应该将该 bean 的scope 属性声明为prototype。类似地,如果您希望 Spring 每次需要时都返回相同的 bean 实例,您应该将 bean 的范围属性声明为singleton

Spring 框架支持以下五个范围,其中三个仅在您使用 Web 感知的 ApplicationContext 时才可用。

先生。 范围和描述
1

单例

这将 bean 定义范围限定为每个 Spring IoC 容器的单个实例(默认)。

2

原型

这将单个 bean 定义范围限定为具有任意数量的对象实例。

3

要求

这将 bean 定义的范围限定为 HTTP 请求。仅在 Web 感知的 Spring ApplicationContext 上下文中有效。

4

会议

这将 bean 定义的范围限定为 HTTP 会话。仅在 Web 感知的 Spring ApplicationContext 上下文中有效。
5

全球会议

这将 bean 定义的范围限定为全局 HTTP 会话。仅在 Web 感知的 Spring ApplicationContext 上下文中有效。

在本章中,我们将讨论前两个范围,其余三个范围将在讨论 Web 感知的 Spring ApplicationContext 时讨论。

单例范围

如果范围设置为单例,Spring IoC 容器将创建由该 bean 定义定义的对象的一个​​实例。该单个实例存储在此类单例 bean 的缓存中,并且该命名 bean 的所有后续请求和引用都会返回缓存的对象。

默认范围始终是单例。但是,当您需要一个且仅一个 bean 实例时,您可以在 bean 配置文件中将范围属性设置为singleton,如以下代码片段所示 -

<!-- A bean definition with singleton scope -->
<bean id = "..." class = "..." scope = "singleton">
   <!-- collaborators and configuration for this bean go here -->
</bean>

例子

让我们准备好一个可用的 Eclipse IDE,并按照以下步骤创建一个 Spring 应用程序 -

脚步 描述
1 创建一个名为SpringExample的项目,并在创建的项目中的src文件夹下创建一个包com.tutorialspoint 。
2 使用“添加外部 JAR”选项添加所需的 Spring 库,如Spring Hello World 示例一章中所述。
3 com.tutorialspoint包下创建 Java 类HelloWorldMainApp
4 src文件夹下创建Beans配置文件Beans.xml
5 最后一步是创建所有 Java 文件和 Bean 配置文件的内容并运行应用程序,如下所述。

这是HelloWorld.java文件的内容-

package com.tutorialspoint;

public class HelloWorld {
   private String message;

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

以下是MainApp.java文件的内容-

package com.tutorialspoint;

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

public class MainApp {
   public static void main(String[] args) {
      ApplicationContext context = new ClassPathXmlApplicationContext("Beans.xml");
      HelloWorld objA = (HelloWorld) context.getBean("helloWorld");

      objA.setMessage("I'm object A");
      objA.getMessage();

      HelloWorld objB = (HelloWorld) context.getBean("helloWorld");
      objB.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 = "helloWorld" class = "com.tutorialspoint.HelloWorld" scope = "singleton">
   </bean>

</beans>

创建完源文件和 bean 配置文件后,让我们运行该应用程序。如果您的应用程序一切正常,它将打印以下消息 -

Your Message : I'm object A
Your Message : I'm object A

原型范围

如果范围设置为prototype,则每次对该特定bean发出请求时,Spring IoC容器都会创建该对象的一个​​新bean实例。通常,对所有全状态 Bean 使用原型作用域,对无状态 Bean 使用单例作用域。

要定义原型范围,您可以在bean配置文件中将范围属性设置为prototype,如以下代码片段所示 -

<!-- A bean definition with prototype scope -->
<bean id = "..." class = "..." scope = "prototype">
   <!-- collaborators and configuration for this bean go here -->
</bean>

例子

让我们准备好可用的 Eclipse IDE,并按照以下步骤创建 Spring 应用程序 -

脚步 描述
1 创建一个名为SpringExample的项目,并在创建的项目中的src文件夹下创建一个包com.tutorialspoint 。
2 使用“添加外部 JAR”选项添加所需的 Spring 库,如Spring Hello World 示例一章中所述。
3 com.tutorialspoint包下创建 Java 类HelloWorldMainApp
4 src文件夹下创建Beans配置文件Beans.xml
5 最后一步是创建所有 Java 文件和 Bean 配置文件的内容并运行应用程序,如下所述。

这是HelloWorld.java文件的内容

package com.tutorialspoint;

public class HelloWorld {
   private String message;

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

以下是MainApp.java文件的内容-

package com.tutorialspoint;

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

public class MainApp {
   public static void main(String[] args) {
      ApplicationContext context = new ClassPathXmlApplicationContext("Beans.xml");
      HelloWorld objA = (HelloWorld) context.getBean("helloWorld");

      objA.setMessage("I'm object A");
      objA.getMessage();

      HelloWorld objB = (HelloWorld) context.getBean("helloWorld");
      objB.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 = "helloWorld" class = "com.tutorialspoint.HelloWorld" scope = "prototype">
   </bean>

</beans>

创建完源文件和 bean 配置文件后,让我们运行该应用程序。如果您的应用程序一切正常,它将打印以下消息 -

Your Message : I'm object A
Your Message : null