1. 程式人生 > >spring集合型別注入

spring集合型別注入

 <!--複雜型別注入主要是集合型別-->
    <!--陣列型別-->
    <bean name="col-arr" class="com.evergrande.injection.Collection">
        <!--如果陣列中只准備註入一個元素直接用value/ref-->
        <!--<property name="arr" value="hahh"></property>-->
        <!--多個元素注入-->
        <property name="arr">
            <array>
                <value>huhu</value>
                <value>tutu</value>
                <ref bean="c"/>
            </array>
        </property>
    </bean>
    <!--list注入-->
    <bean name="col-list" class="com.evergrande.injection.Collection">
        <!--如果list中只准備註入一個元素直接用value/ref-->
        <!--<property name="list" value="hahh"></property>-->
        <!--多個元素注入-->
        <property name="list">
            <list>
                <value>waaw</value>
                <value>waa</value>
                <ref bean="c"/>
            </list>
        </property>
        <!--map 型別注入-->
        <property name="map">
            <map>
                <entry key="url" value="wawa"></entry>
                <entry key-ref="user" value-ref="c"></entry>
                <entry key="driver" value-ref="user3"></entry>
            </map>
        </property>
        <!--properties注入-->
        <property name="prop">
            <props>
                <prop key="username">root</prop>
                <prop key="passsword">123456</prop>
            </props>
        </property>
    </bean>