扫码一下
查看教程更方便
我们已经看到了如何使用 value 属性来配置基本数据类型和在你的 bean 配置文件中使用 <property>
标签的 ref 属性来配置对象引用。这两种情况下处理奇异值传递给一个 bean。
现在,如果您想传递多个值,例如 Java 集合类型,例如 List、Set、Map 和 Properties,该怎么办。 为了处理这种情况,Spring 提供了四种类型的集合配置元素,如下所示
序号 | 元素 | 描述 |
---|---|---|
1 | <list> | 它有助于连线,如注入一列值,允许重复。 |
2 | <set> | 它有助于连线一组值,但不能重复。 |
3 | <map> | 它可以用来注入名称-值对的集合,其中名称和值可以是任何类型。 |
4 | <props> | 它可以用来注入名称-值对的集合,其中名称和值都是字符串类型。 |
可以使用 <list> 或 <set> 来连接 java.util.Collection 的任何实现或数组。
你会遇到两种情况(a)传递集合中直接的值(b)传递一个 bean 的引用作为集合的元素。
我们看一个例子
这是 JavaCollection.java 文件的内容
JavaCollection.java
package com.jiyik; import java.util.*; public class JavaCollection { List addressList; Set addressSet; Map addressMap; Properties addressProp; public void setAddressList(List addressList) { this.addressList = addressList; } public List getAddressList() { System.out.println("List Elements :" + addressList); return addressList; } public void setAddressSet(Set addressSet) { this.addressSet = addressSet; } 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 文件的内容
MainApp.java
package com.jiyik; 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,其中包含所有集合类型的配置
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.jiyik.JavaCollection"> <!-- results in a setAddressList(java.util.List) call --> <property name = "addressList"> <list> <value>INDIA</value> <value>Pakistan</value> <value>USA</value> <value>USA</value> </list> </property> <!-- results in a setAddressSet(java.util.Set) call --> <property name = "addressSet"> <set> <value>INDIA</value> <value>Pakistan</value> <value>USA</value> <value>USA</value> </set> </property> <!-- results in a setAddressMap(java.util.Map) call --> <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> <!-- results in a setAddressProp(java.util.Properties) call --> <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]
ap Elements :{1 = INDIA, 2 = Pakistan, 3 = USA, 4 = USA}
Property Elements :{two = Pakistan, one = INDIA, three = USA, four = USA}
以下 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 方法,以便它们也应该能够处理引用。
如果需要将空字符串作为值传递,则可以按如下方式传递
<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)