原文: http://zetcode.com/spring/prototypescope/

Spring Prototype 作用域 bean 教程展示了如何在 Spring 应用中使用 Prototype 作用域 bean。

Spring 是用于创建企业应用的流行 Java 应用框架。

Spring 原型 bean

原型 bean 每次针对该 bean 发出新请求时都会创建。

其他 bean 范围是:单例,请求,会话,全局会话和应用。

Spring 原型 bean 示例

该应用将创建两个原型范围内的 bean,并检查它们是否相同。 该应用是经典的 Spring 5 控制台应用。

  1. ────src
  2. ├───main
  3. ├───java
  4. └───com
  5. └───zetcode
  6. Application.java
  7. └───bean
  8. Message.java
  9. └───resources
  10. logback.xml
  11. my-beans.xml
  12. └───test
  13. └───java

这是项目结构。

pom.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
  5. http://maven.apache.org/xsd/maven-4.0.0.xsd">
  6. <modelVersion>4.0.0</modelVersion>
  7. <groupId>com.zetcode</groupId>
  8. <artifactId>prototypescopedbean</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <maven.compiler.source>11</maven.compiler.source>
  13. <maven.compiler.target>11</maven.compiler.target>
  14. <spring-version>5.1.3.RELEASE</spring-version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>ch.qos.logback</groupId>
  19. <artifactId>logback-classic</artifactId>
  20. <version>1.2.3</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework</groupId>
  24. <artifactId>spring-context</artifactId>
  25. <version>${spring-version}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework</groupId>
  29. <artifactId>spring-core</artifactId>
  30. <version>${spring-version}</version>
  31. </dependency>
  32. </dependencies>
  33. <build>
  34. <plugins>
  35. <plugin>
  36. <groupId>org.codehaus.mojo</groupId>
  37. <artifactId>exec-maven-plugin</artifactId>
  38. <version>1.6.0</version>
  39. <configuration>
  40. <mainClass>com.zetcode.Application</mainClass>
  41. </configuration>
  42. </plugin>
  43. </plugins>
  44. </build>
  45. </project>

pom.xml文件中,我们具有基本的 Spring 依赖项spring-corespring-context和日志记录logback-classic依赖项。

exec-maven-plugin用于在命令行上从 Maven 执行 Spring 应用。

resources/my-beans.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans
  6. http://www.springframework.org/schema/beans/spring-beans.xsd
  7. http://www.springframework.org/schema/context
  8. http://www.springframework.org/schema/context/spring-context.xsd">
  9. <context:component-scan base-package="com.zetcode"/>
  10. </beans>

通过context:component-scan标签,我们指示 Spring 在com.zetcode包中查找 bean。 它将找到我们唯一的Message bean,并用@Component装饰。

resources/logback.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <configuration>
  3. <logger name="org.springframework" level="ERROR"/>
  4. <logger name="com.zetcode" level="INFO"/>
  5. <appender name="consoleAppender" class="ch.qos.logback.core.ConsoleAppender">
  6. <encoder>
  7. <Pattern>%d{HH:mm:ss.SSS} [%thread] %blue(%-5level) %magenta(%logger{36}) - %msg %n
  8. </Pattern>
  9. </encoder>
  10. </appender>
  11. <root>
  12. <level value="INFO" />
  13. <appender-ref ref="consoleAppender" />
  14. </root>
  15. </configuration>

logback.xml是 Logback 日志库的配置文件。

com/zetcode/bean/Message.java

  1. package com.zetcode.bean;
  2. import org.springframework.context.annotation.Scope;
  3. import org.springframework.stereotype.Component;
  4. @Component
  5. @Scope("prototype")
  6. public class Message {
  7. private String message;
  8. public String getMessage() {
  9. return message;
  10. }
  11. }

Message是由 Spring 容器管理的 Spring bean。 它具有原型范围。

  1. @Component
  2. @Scope("prototype")
  3. public class Message {

@Scope("prototype")将 bean 的范围设置为原型。 默认值为单例。

com/zetcode/Application.java

  1. package com.zetcode;
  2. import com.zetcode.bean.Message;
  3. import org.slf4j.Logger;
  4. import org.slf4j.LoggerFactory;
  5. import org.springframework.context.support.GenericXmlApplicationContext;
  6. public class Application {
  7. private static final Logger logger = LoggerFactory.getLogger(Application.class);
  8. public static void main(String[] args) {
  9. var ctx = new GenericXmlApplicationContext("my-beans.xml");
  10. var beanA = ctx.getBean(Message.class);
  11. var beanB = ctx.getBean(Message.class);
  12. if (beanA.equals(beanB)) {
  13. logger.info("The beans are identical");
  14. } else {
  15. logger.info("The beans are not identical");
  16. }
  17. ctx.close();
  18. }
  19. }

这是主要的应用类。

  1. var ctx = new GenericXmlApplicationContext("my-beans.xml");

我们使用GenericXmlApplicationContextmy-beans.xml文件创建 Spring 应用上下文。

  1. var bean1 = ctx.getBean(Message.class);
  2. var bean2 = ctx.getBean(Message.class);
  3. app.run(bean1, bean2);

我们从应用上下文中获得两个 bean,并将它们传递给run()方法进行比较。

  1. logger.info(a.getMessage());

我们从 bean 中读取消息。

  1. if (a.equals(b)) {
  2. logger.info("The beans are the same");
  3. } else {
  4. logger.info("The beans are not the same");
  5. }

我们测试两个豆是否相同。

  1. $ mvn -q exec:java
  2. 21:26:03.089 [com.zetcode.Application.main()] INFO com.zetcode.Application - The beans are not identical

我们运行该应用。 将Message bean 的范围更改为单例并比较结果。

在本教程中,我们使用了原型 Spring bean。

您可能也对这些相关教程感兴趣:经典的 Spring 应用中的 JdbcTemplateSpring 单例范围 beanSpring ClassPathResource教程Spring 注入列表 XML 教程Spring BeanDefinitionBuilder教程Spring HikariCP 教程Java 教程