写点什么

Spring 注入集合

作者:小万哥
  • 2023-09-11
    广东
  • 本文字数:3443 字

    阅读完需:约 11 分钟

Spring 注入集合

使用<property>标签的value属性配置原始数据类型和ref属性配置对象引用的方式来定义 Bean 配置文件。这两种情况都涉及将单一值传递给 Bean。那么如果您想传递多个值,例如 Java 集合类型,如 List、Set、Map 和 Properties 怎么办?为了处理这种情况,Spring 提供了四种类型的集合配置元素,如下所示:



您可以使用<list><set>来注入java.util.Collection的任何实现或数组。


在处理集合时,通常会遇到两种情况:(a)传递集合的直接值和(b)将 Bean 的引用作为集合元素之一传递。


示例


假设您已经准备好 Eclipse IDE,并采取以下步骤创建 Spring 应用程序:


步骤 描述


1 创建一个名为 SpringExample 的项目,在创建的项目中的 src 文件夹下创建一个名为 com.tutorialspoint 的包。


2 使用"Add External JARs"选项添加所需的 Spring 库,如 Spring Hello World 示例章节中所述。


3 在 com.tutorialspoint 包下创建 Java 类 JavaCollection 和 MainApp。


4 在 src 文件夹下创建 Beans 配置文件 Beans.xml。


5 最后一步是创建所有 Java 文件和 Bean 配置文件的内容,并按以下说明运行应用程序。


以下是 JavaCollection.java 文件的内容:


package com.tutorialspoint;import java.util.*;
public class JavaCollection { List addressList; Set addressSet; Map addressMap; Properties addressProp;
// 用于设置List的setter方法 public void setAddressList(List addressList) { this.addressList = addressList; } // 打印并返回列表的所有元素。 public List getAddressList() { System.out.println("List Elements :" + addressList); return addressList; } // 用于设置Set的setter方法 public void setAddressSet(Set addressSet) { this.addressSet = addressSet; } // 打印并返回Set的所有元素。 public Set getAddressSet() { System.out.println("Set Elements :" + addressSet); return addressSet; } // 用于设置Map的setter方法 public void setAddressMap(Map addressMap) { this.addressMap = addressMap; } // 打印并返回Map的所有元素。 public Map getAddressMap() { System.out.println("Map Elements :" + addressMap); return addressMap; } // 用于设置Property的setter方法 public void setAddressProp(Properties addressProp) { this.addressProp = addressProp; } // 打印并返回Property的所有元素。 public Properties getAddressProp() { System.out.println("Property Elements :" + addressProp); return addressProp; }}
复制代码


以下是 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"); JavaCollection jc=(JavaCollection)context.getBean("javaCollection");
jc.getAddressList(); jc.getAddressSet(); jc.getAddressMap(); jc.getAddressProp(); }}
复制代码


以下是包含所有集合类型配置的 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
">
<!-- Definition for javaCollection --> <bean id = "javaCollection" class = "com.tutorialspoint.JavaCollection"> <!-- 产生 setAddressList(java.util.List) 调用 --> <property name = "addressList"> <list> <value>INDIA</value> <value>Pakistan</value> <value>USA</value> <value>USA</value> </list> </property>
<!-- 产生 setAddressSet(java.util.Set) 调用 --> <property name = "addressSet"> <set> <value>INDIA</value> <value>Pakistan</value> <value>USA</value> <value>USA</value> </set> </property>
<!-- 产生 setAddressMap(java.util.Map) 调用 --> <property name = "addressMap"> <map> <entry key = "1" value = "INDIA"/> <entry key = "2" value = "Pakistan"/> <entry key = "3" value = "USA"/> <entry key = "4" value = "USA"/> </map> </property> <!-- 产生 setAddressProp(java.util.Properties) 调用 --> <property name = "addressProp"> <props> <prop key = "one">INDIA</prop> <prop key = "one">INDIA</prop> <prop key = "two">Pakistan</prop> <prop key = "three">USA</prop> <prop key = "four">USA</prop> </props> </property> </bean>
</beans>
复制代码


当您完成创建源代码和 Bean 配置文件后,让我们运行应用程序。如果一切正常,应用程序将打印以下消息:


List Elements :[INDIA, Pakistan, USA, USA]Set Elements :[INDIA, Pakistan, USA]Map Elements :{1=INDIA, 2=Pakistan, 3=USA, 4=USA}Property Elements :{two=Pakistan, one=INDIA, three=USA, four=USA}
复制代码


注入 Bean 引用


以下 Bean 定义将帮助您了解如何将 Bean 引用注入为集合的元素之一。您甚至可以将引用和值混合在一起,如下面的代码片段所示:


<?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 Definition to handle references and values --> <bean id = "..." class = "...">
<!-- Passing bean reference for java.util.List --> <property name = "addressList"> <list> <ref bean = "address1"/> <ref bean = "address2"/> <value>Pakistan</value> </list> </property> <!-- Passing bean reference for java.util.Set --> <property name = "addressSet"> <set> <ref bean = "address1"/> <ref bean = "address2"/> <value>Pakistan</value> </set> </property> <!-- Passing bean reference for java.util.Map --> <property name = "addressMap"> <map> <entry key = "one" value = "INDIA"/> <entry key = "two" value-ref = "address1"/> <entry key = "three" value-ref = "address2"/> </map> </property> </bean>
</beans>
复制代码


要使用上述 Bean 定义,您需要以使它们能够处理引用的方式定义 setter 方法。


注入 null 和空字符串值


如果需要传递空字符串作为值,可以使用以下方式传递:


<bean id = "..." class = "exampleBean">   <property name = "email" value = ""/></bean>
复制代码


上述示例等效于 Java 代码:exampleBean.setEmail("")


如果需要传递 NULL 值,可以使用以下方式传递:


<bean id = "..." class = "exampleBean">   <property name = "email"><null/></property></bean>
复制代码


上述示例等效于 Java 代码:exampleBean.setEmail(null)

最后

为了方便其他设备和平台的小伙伴观看往期文章,链接奉上:


公众号搜索Let us Coding知乎开源中国CSDN思否掘金InfoQ简书博客园慕课51CTOhelloworld腾讯开发者社区阿里开发者社区


看完如果觉得有帮助,欢迎点赞、收藏关注

发布于: 刚刚阅读数: 5
用户头像

小万哥

关注

代码如人生 2023-02-09 加入

编程爱好者

评论

发布
暂无评论
Spring 注入集合_Go_小万哥_InfoQ写作社区