2015-03-03 13:34

[轉載] Spring Collections (List, Set, Map, and Properties)

轉載自:Spring Collections (List, Set, Map, and Properties) example

Spring examples to show you how to inject values into collections type (List, Set, Map, and Properties). 4 major collection types are supported :
  • List – <list/>
  • Set – <set/>
  • Map – <map/>
  • Properties – <props/>


Spring beans

A Customer object, with four collection properties.
  1. package com.mkyong.common; 
  2.  
  3. import java.util.List; 
  4. import java.util.Map; 
  5. import java.util.Properties; 
  6. import java.util.Set; 
  7.  
  8. public class Customer 
  9. { 
  10.    private List<Object> lists; 
  11.    private Set<Object> sets; 
  12.    private Map<Object, Object> maps; 
  13.    private Properties pros; 
  14.  
  15.    //... 
  16. } 
See different code snippets to declare collection in bean configuration file.


1. List example

  1. <property name="lists"> 
  2.    <list> 
  3.        <value>1</value> 
  4.        <ref bean="PersonBean" /> 
  5.        <bean class="com.mkyong.common.Person"> 
  6.            <property name="name" value="mkyongList" /> 
  7.            <property name="address" value="address" /> 
  8.            <property name="age" value="28" /> 
  9.        </bean> 
  10.    </list> 
  11. </property> 


2. Set example

  1. <property name="sets"> 
  2.    <set> 
  3.        <value>1</value> 
  4.        <ref bean="PersonBean" /> 
  5.        <bean class="com.mkyong.common.Person"> 
  6.            <property name="name" value="mkyongSet" /> 
  7.            <property name="address" value="address" /> 
  8.            <property name="age" value="28" /> 
  9.        </bean> 
  10.    </set> 
  11. </property> 


3. Map example

  1. <property name="maps"> 
  2.    <map> 
  3.        <entry key="Key 1" value="1" /> 
  4.        <entry key="Key 2" value-ref="PersonBean" /> 
  5.        <entry key="Key 3"> 
  6.            <bean class="com.mkyong.common.Person"> 
  7.                <property name="name" value="mkyongMap" /> 
  8.                <property name="address" value="address" /> 
  9.                <property name="age" value="28" /> 
  10.            </bean> 
  11.        </entry> 
  12.    </map> 
  13. </property> 


4. Properties example

  1. <property name="pros"> 
  2.    <props> 
  3.        <prop key="admin">admin@nospam.com</prop> 
  4.        <prop key="support">support@nospam.com</prop> 
  5.    </props> 
  6. </property> 


Full Spring’s bean configuration file.

  1. <beans xmlns="http://www.springframework.org/schema/beans" 
  2.    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  3.    xsi:schemaLocation="http://www.springframework.org/schema/beans 
  4.    http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"> 
  5.  
  6.    <bean id="CustomerBean" class="com.mkyong.common.Customer"> 
  7.  
  8.        <!-- java.util.List --> 
  9.        <property name="lists"> 
  10.            <list> 
  11.                <value>1</value> 
  12.                <ref bean="PersonBean" /> 
  13.                <bean class="com.mkyong.common.Person"> 
  14.                    <property name="name" value="mkyongList" /> 
  15.                    <property name="address" value="address" /> 
  16.                    <property name="age" value="28" /> 
  17.                </bean> 
  18.            </list> 
  19.        </property> 
  20.  
  21.        <!-- java.util.Set --> 
  22.        <property name="sets"> 
  23.            <set> 
  24.                <value>1</value> 
  25.                <ref bean="PersonBean" /> 
  26.                <bean class="com.mkyong.common.Person"> 
  27.                    <property name="name" value="mkyongSet" /> 
  28.                    <property name="address" value="address" /> 
  29.                    <property name="age" value="28" /> 
  30.                </bean> 
  31.            </set> 
  32.        </property> 
  33.  
  34.        <!-- java.util.Map --> 
  35.        <property name="maps"> 
  36.            <map> 
  37.                <entry key="Key 1" value="1" /> 
  38.                <entry key="Key 2" value-ref="PersonBean" /> 
  39.                <entry key="Key 3"> 
  40.                    <bean class="com.mkyong.common.Person"> 
  41.                        <property name="name" value="mkyongMap" /> 
  42.                        <property name="address" value="address" /> 
  43.                        <property name="age" value="28" /> 
  44.                    </bean> 
  45.                </entry> 
  46.            </map> 
  47.        </property> 
  48.  
  49.        <!-- java.util.Properties --> 
  50.        <property name="pros"> 
  51.            <props> 
  52.                <prop key="admin">admin@nospam.com</prop> 
  53.                <prop key="support">support@nospam.com</prop> 
  54.            </props> 
  55.        </property> 
  56.  
  57.    </bean> 
  58.  
  59.    <bean id="PersonBean" class="com.mkyong.common.Person"> 
  60.        <property name="name" value="mkyong1" /> 
  61.        <property name="address" value="address 1" /> 
  62.        <property name="age" value="28" /> 
  63.    </bean> 
  64. </beans> 

Run it…
  1. package com.mkyong.common; 
  2.  
  3. import org.springframework.context.ApplicationContext; 
  4. import org.springframework.context.support.ClassPathXmlApplicationContext; 
  5.  
  6. public class App { 
  7.  
  8.    public static void main( String[] args ) { 
  9.  
  10.        ApplicationContext context  
  11.            = new ClassPathXmlApplicationContext("SpringBeans.xml"); 
  12.  
  13.        Customer cust = (Customer)context.getBean("CustomerBean"); 
  14.        System.out.println(cust); 
  15.    } 
  16. } 

Output
  1. Customer [ 
  2.    lists=[ 
  3.        1, 
  4.        Person [address=address 1, age=28, name=mkyong1], 
  5.        Person [address=address, age=28, name=mkyongList] 
  6.    ], 
  7.  
  8.    maps={ 
  9.        key 1=1, 
  10.        key 2=Person [address=address 1, age=28, name=mkyong1], 
  11.        key 3=Person [address=address, age=28, name=mkyongMap] 
  12.    }, 
  13.  
  14.    pros={ 
  15.        admin=admin@nospam.com, 
  16.        support=support@nospam.com 
  17.    }, 
  18.  
  19.    sets=[ 
  20.        1, 
  21.        Person [address=address 1, age=28, name=mkyong1], 
  22.        Person [address=address, age=28, name=mkyongSet] 
  23.    ] 
  24. ] 

0 回應: