【Java】Spring中注入List,Set,Map,Properties

栏目: Java · 发布时间: 6年前

内容简介:【Java】Spring中注入List,Set,Map,Properties
  • List – <list/>
  • Set – <set/>
  • Map – <map/>
  • Properties – <props/>

Spring beans

import java.util.List;


import java.util.Map;


import java.util.Properties;


import java.util.Set;


  

public class Customer

{

    private List<Object> lists;


    private Set<Object> sets;


    private Map<Object, Object> maps;


    private Properties pros;


  

    //...

}

配置文件:

<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-2.5.xsd">


  

    <bean id="CustomerBean" class="com.mkyong.common.Customer">


  

        <!-- java.util.List -->


        <property name="lists">


            <list>


                <value>1</value>


                <ref bean="PersonBean" />


                <bean class="com.mkyong.common.Person">


                    <property name="name" value="mkyongList" />


                    <property name="address" value="address" />


                    <property name="age" value="28" />


                </bean>


            </list>


        </property>


  

        <!-- java.util.Set -->


        <property name="sets">


            <set>


                <value>1</value>


                <ref bean="PersonBean" />


                <bean class="com.mkyong.common.Person">


                    <property name="name" value="mkyongSet" />


                    <property name="address" value="address" />


                    <property name="age" value="28" />


                </bean>


            </set>


        </property>


  

        <!-- java.util.Map -->


        <property name="maps">


            <map>


                <entry key="Key 1" value="1" />


                <entry key="Key 2" value-ref="PersonBean" />


                <entry key="Key 3">


                    <bean class="com.mkyong.common.Person">


                        <property name="name" value="mkyongMap" />


                        <property name="address" value="address" />


                        <property name="age" value="28" />


                    </bean>


                </entry>


            </map>


        </property>


  

        <!-- java.util.Properties -->


        <property name="pros">


            <props>


                <prop key="admin">admin@nospam.com</prop>


                <prop key="support">support@nospam.com</prop>


            </props>


        </property>


  

    </bean>


  

    <bean id="PersonBean" class="com.mkyong.common.Person">


        <property name="name" value="mkyong1" />


        <property name="address" value="address 1" />


        <property name="age" value="28" />


    </bean>


  

</beans>

运行:

public class App

{

    public static void main( String[] args )


    {


        ApplicationContext context = new ClassPathXmlApplicationContext("SpringBeans.xml");


  

        Customer cust = (Customer)context.getBean("CustomerBean");


        System.out.println(cust);


  

    }

}

我们也可以使用 ListFactoryBean。The ‘ ListFactoryBean ‘ class provides developer a way to create a concrete List collection class (ArrayList and LinkedList) in Spring’s bean configuration file.

<bean id="CustomerBean" class="com.mkyong.common.Customer">


        <property name="lists">


            <bean class="org.springframework.beans.factory.config.ListFactoryBean">


                <property name="targetListClass">


                    <value>java.util.ArrayList</value>


                </property>


                <property name="sourceList">


                    <list>


                        <value>1</value>


                        <value>2</value>


                        <value>3</value>


                    </list>


                </property>


            </bean>


        </property>


    </bean>

或者:加入:xmlns:util="http://www.springframework.org/schema/util"然后就可以:

<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-2.5.xsd


    http://www.springframework.org/schema/util


    http://www.springframework.org/schema/util/spring-util-2.5.xsd">


  

    <bean id="CustomerBean" class="com.mkyong.common.Customer">


        <property name="lists">


            <util:list list-class="java.util.ArrayList">


                <value>1</value>


                <value>2</value>


                <value>3</value>


            </util:list>


        </property>


    </bean>


  

</beans>

SetFactoryBean The ‘SetFactoryBean‘ class provides developer a way to create a concrete Set collection (HashSet and TreeSet) in Spring’s bean configuration file.

set和上面的一样:

<bean id="CustomerBean" class="com.mkyong.common.Customer">


        <property name="sets">


            <util:set set-class="java.util.HashSet">


                <value>1</value>


                <value>2</value>


                <value>3</value>


            </util:set>


        </property>


    </bean>

MapFactoryBean The ‘MapFactoryBean‘ class provides developer a way to create a concrete Map collection class (HashMap and TreeMap) in Spring’s bean configuration file.

map也一样:

<bean id="CustomerBean" class="com.mkyong.common.Customer">


        <property name="maps">


            <util:map map-class="java.util.HashMap">


                <entry key="Key1" value="1" />


                <entry key="Key2" value="2" />


                <entry key="Key3" value="3" />


            </util:map>


        </property>


    </bean>


以上所述就是小编给大家介绍的《【Java】Spring中注入List,Set,Map,Properties》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

数文明

数文明

涂子沛 / 中信出版集团 / 2018-9 / 88.00元

从量数、据数、普适记录、人脸识别、以图搜车,到雾计算、城市大脑、单粒度治理、无匿名社会、量子思维……作为中国研究大数据的权威专家,作者在《数文明》一书中,以大数据为核心元素,抽丝剥茧,深入地阐述了这个大数据时代的文明社会——一个全新的数文明时代。 将大数据与人类文明融合在一起,这本书提供给我们的不仅是一种全新的叙事结构,它还将突破你的认知边界和思维极限,给你提供一个应对这个世界的全新的认知方......一起来看看 《数文明》 这本书的介绍吧!

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具