1. 程式人生 > >spring02——基於xml的自動裝配以及級聯注入

spring02——基於xml的自動裝配以及級聯注入

先介紹一下級聯注入:

專案結構圖

Persion類中有PersionCar 屬性,同時persionCar中也有Source屬性:

 

這裡注意,一定要寫各級聯屬性的get方法,否則配置檔案叫報錯

xml配置:

    <bean id="car" class="com.wj.spring.entity2.PersionCar" p:carNam="benchi" p:carPrice="250">
        <property name="source">
            <bean class="com.wj.spring.entity2.Source">
                <property name="sourceNam" value="123"></property>
            </bean>
        </property>
    </bean>
    <bean id="persion" class="com.wj.spring.entity2.Persion" >
        <property name="name" value="bxklx"></property>
        <property name="persionCar" ref="car"></property>
        <property name="persionCar.source.sourceNam" value="測試"></property>
    </bean>

 

結果:

 

 

基於xml配置檔案也可以實現bean的自動裝配:

byName:屬性名字要和bean 的 Id 一致!!!

Main方法:

package com.wj.spring.entity2;

import org.springframework.context.support.ClassPathXmlApplicationContext;

/**
 * Created by 小美女 on 2018/11/17.
 */
public class Main {
    public static void main(String [] args){
        ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext("bean-aut.xml");
        Persion persion = (Persion) ctx.getBean("persion");
        System.out.println(persion);


        Persion persion2 = (Persion) ctx.getBean("persion2");
        System.out.println(persion2);
    }
}

結果: