使用<property>標簽的value屬性配置原始數據類型和ref屬性配置對象引用的方式來定義Bean配置文件。這兩種情況都涉及將單一值傳遞給Bean。那麼如果您想傳遞多個值,例如Java集合類型,如List、Set、Map和Properties怎麼辦?為了處理這種情況,Spring提供了四種類型 ...
使用<property>
標簽的value
屬性配置原始數據類型和ref
屬性配置對象引用的方式來定義Bean配置文件。這兩種情況都涉及將單一值傳遞給Bean。那麼如果您想傳遞多個值,例如Java集合類型,如List、Set、Map和Properties怎麼辦?為了處理這種情況,Spring提供了四種類型的集合配置元素,如下所示:
序號 | 元素 & 描述 |
---|---|
1 | <list> |
用於註入一組值,允許重覆。 | |
2 | <set> |
用於註入一組值,但不允許重覆。 | |
3 | <map> |
可用於註入一組名稱-值對,其中名稱和值可以是任何類型。 | |
4 | <props> |
可用於註入一組名稱-值對,其中名稱和值都是字元串。 |
您可以使用<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,簡書,博客園,慕課,51CTO,helloworld,騰訊開發者社區,阿裡開發者社區
看完如果覺得有幫助,歡迎點贊、收藏和關註