《Spring攻略(第2版)》——1.8 使用工厂Bean和Utility Schema定义集合

简介: Spring提供两个选项来克服基本集合标记的不足。选项之一是使用对应的集合工厂Bean,如ListFactoryBean、SetFactoryBean和MapFactoryBean。工厂Bean是用于创建其他Bean的特殊Spring bean。

本节书摘来自异步社区《Spring攻略(第2版)》一书中的第1章,第1.8节,作者: 【美】Gary Mak , Josh Long , Daniel Rubio著,更多章节内容可以访问云栖社区“异步社区”公众号查看

1.8 使用工厂Bean和Utility Schema定义集合

1.8.1 问题
使用基本集合标记定义集合时,你不能指定集合的实体类,例如LinkedList、TreeSet或TreeMap,而且,你不能通过将集合定义为可供其他Bean引用的单独Bean在不同的Bean中共享集合。

1.8.2 解决方案
Spring提供两个选项来克服基本集合标记的不足。选项之一是使用对应的集合工厂Bean,如ListFactoryBean、SetFactoryBean和MapFactoryBean。工厂Bean是用于创建其他Bean的特殊Spring bean。第二个选项是在Spring 2.x中引入的util schema中使用集合标记,如、和。

1.8.3 工作原理
为集合指定实体类
你可以使用集合工厂Bean定义一个集合,并且指定其目标类。例如,你可以为SetFactory Bean指定targetSetClass属性。然后Spring将为这个集合实例化指定的类。

<bean id="sequenceGenerator"
   class="com.apress.springrecipes.sequence.SequenceGenerator">
   <property name="prefixGenerator" ref="datePrefixGenerator" />
   <property name="initial" value="100000" />
   <property name="suffixes">
     <bean class="org.springframework.beans.factory.config.SetFactoryBean">
        <property name="targetSetClass">
          <value>java.util.TreeSet</value>
        </property>
        <property name="sourceSet">
          <set>
             <value>5</value>
             <value>10</value>
             <value>20</value>
          </set>
        </property>
     </bean>
   </property>
</bean>

你也可以使用util schema中的集合标记定义集合并且设置其目标类(例如,利用的set-class属性)。但是你必须记住在根元素中添加util schema定义。

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

   <bean id="sequenceGenerator"
     class="com.apress.springrecipes.sequence.SequenceGenerator">
     ...
     <property name="suffixes">
        <util:set set-class="java.util.TreeSet">
          <value>5</value>
          <value>10</value>
          <value>20</value>
        </util:set>
     </property>
   </bean>
   ...
</beans>

定义独立集合
集合工厂Bean的另一个好处是可以将集合定义为独立Bean,供其他Bean引用。例如,你可以使用SetFactoryBean定义一个独立的Set。

<beans ...>
   <bean id="sequenceGenerator"
     class="com.apress.springrecipes.sequence.SequenceGenerator">
     ...
     <property name="suffixes">
        <ref local="suffixes" />
     </property>
   </bean>
   <bean id="suffixes"
     class="org.springframework.beans.factory.config.SetFactoryBean">
     <property name="sourceSet">
        <set>
          <value>5</value>
          <value>10</value>
          <value>20</value>
        </set>
     </property>
   </bean>
   ...
</beans>

你也可以使用util schema中的标记定义一个独立Set。

<beans ...>
   <bean id="sequenceGenerator"
     class="com.apress.springrecipes.sequence.SequenceGenerator">
     ...
     <property name="suffixes">
        <ref local="suffixes" />
     </property>
   </bean>

   <util:set id="suffixes">
     <value>5</value>
     <value>10</value>
     <value>20</value>
   </util:set>
   ...
</beans>
相关文章
|
24天前
|
XML 安全 Java
|
1天前
|
存储 Java Spring
【Spring】获取Bean对象需要哪些注解
@Conntroller,@Service,@Repository,@Component,@Configuration,关于Bean对象的五个常用注解
|
1天前
|
存储 Java 应用服务中间件
【Spring】IoC和DI,控制反转,Bean对象的获取方式
IoC,DI,控制反转容器,Bean的基本常识,类注解@Controller,获取Bean对象的常用三种方式
|
6天前
|
XML Java 数据格式
Spring容器Bean之XML配置方式
通过对以上内容的掌握,开发人员可以灵活地使用Spring的XML配置方式来管理应用程序的Bean,提高代码的模块化和可维护性。
35 6
|
8天前
|
XML Java 数据格式
🌱 深入Spring的心脏:Bean配置的艺术与实践 🌟
本文深入探讨了Spring框架中Bean配置的奥秘,从基本概念到XML配置文件的使用,再到静态工厂方式实例化Bean的详细步骤,通过实际代码示例帮助读者更好地理解和应用Spring的Bean配置。希望对你的Spring开发之旅有所助益。
53 3
|
1月前
|
缓存 Java Spring
实战指南:四种调整 Spring Bean 初始化顺序的方案
本文探讨了如何调整 Spring Boot 中 Bean 的初始化顺序,以满足业务需求。文章通过四种方案进行了详细分析: 1. **方案一 (@Order)**:通过 `@Order` 注解设置 Bean 的初始化顺序,但发现 `@PostConstruct` 会影响顺序。 2. **方案二 (SmartInitializingSingleton)**:在所有单例 Bean 初始化后执行额外的初始化工作,但无法精确控制特定 Bean 的顺序。 3. **方案三 (@DependsOn)**:通过 `@DependsOn` 注解指定 Bean 之间的依赖关系,成功实现顺序控制,但耦合性较高。
实战指南:四种调整 Spring Bean 初始化顺序的方案
|
22天前
|
安全 Java 开发者
Spring容器中的bean是线程安全的吗?
Spring容器中的bean默认为单例模式,多线程环境下若操作共享成员变量,易引发线程安全问题。Spring未对单例bean做线程安全处理,需开发者自行解决。通常,Spring bean(如Controller、Service、Dao)无状态变化,故多为线程安全。若涉及线程安全问题,可通过编码或设置bean作用域为prototype解决。
32 1
|
2月前
|
XML Java 数据格式
Spring从入门到入土(bean的一些子标签及注解的使用)
本文详细介绍了Spring框架中Bean的创建和使用,包括使用XML配置文件中的标签和注解来创建和管理Bean,以及如何通过构造器、Setter方法和属性注入来配置Bean。
82 9
Spring从入门到入土(bean的一些子标签及注解的使用)
|
2月前
|
Java 测试技术 Windows
咦!Spring容器里为什么没有我需要的Bean?
【10月更文挑战第11天】项目经理给小菜分配了一个紧急需求,小菜迅速搭建了一个SpringBoot项目并完成了开发。然而,启动测试时发现接口404,原因是控制器包不在默认扫描路径下。通过配置`@ComponentScan`的`basePackages`字段,解决了问题。总结:`@SpringBootApplication`默认只扫描当前包下的组件,需要扫描其他包时需配置`@ComponentScan`。
|
2月前
|
Java 开发者 Spring
Spring bean的生命周期详解!
本文详细解析Spring Bean的生命周期及其核心概念,并深入源码分析。Spring Bean是Spring框架的核心,由容器管理其生命周期。从实例化到销毁,共经历十个阶段,包括属性赋值、接口回调、初始化及销毁等。通过剖析`BeanFactory`、`ApplicationContext`等关键接口与类,帮助你深入了解Spring Bean的管理机制。希望本文能助你更好地掌握Spring Bean生命周期。
137 1