依赖注入_List_Set_Array类型的注入
生活随笔
收集整理的這篇文章主要介紹了
依赖注入_List_Set_Array类型的注入
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:p="http://www.springframework.org/schema/p"xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd"><bean id="personList" class="com.learn.spring.beans.PersonList"><property name="name" value="佟湘玉"></property><property name="age" value="25"></property><property name="cars" ><list><ref bean="car"/><ref bean="car1"/><ref bean="car2"/><!-- <bean></bean> 還可以使用內(nèi)部bean--></list><!-- <set></set><array></array>--></property></bean> </beans>
package com.learn.spring.test;import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;import com.learn.spring.beans.Book;
import com.learn.spring.beans.Car;
import com.learn.spring.beans.HelloWorld;
import com.learn.spring.beans.Person;
import com.learn.spring.beans.PersonList;
import com.learn.spring.beans.PersonMap;public class Main {public static void main(String[] args) { PersonList personList = (PersonList)ctx.getBean("personList");System.out.println(personList); }
}
?
超強(qiáng)干貨來襲 云風(fēng)專訪:近40年碼齡,通宵達(dá)旦的技術(shù)人生總結(jié)
以上是生活随笔為你收集整理的依赖注入_List_Set_Array类型的注入的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 内部bean
- 下一篇: 依赖注入_Map类型的注入