亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

spring?IOC容器的Bean管理XML自動裝配怎么實現

發布時間:2022-05-30 16:36:24 來源:億速云 閱讀:153 作者:iii 欄目:開發技術

這篇文章主要講解了“spring IOC容器的Bean管理XML自動裝配怎么實現”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“spring IOC容器的Bean管理XML自動裝配怎么實現”吧!

什么是自動裝配?

在之前的內容中,每給屬性注入值都要一個個的用 property 標簽來完成,比如:

<bean id="book" class="com.pingguo.spring5.collectiontype.Book" scope="prototype">
        <property name="list" ref="bookList"></property>
    </bean>

這就是手動裝配。

而自動裝配中,spring 會根據指定裝配規則(屬性名稱或者屬性類型) 來自動的將匹配的屬性值進行注入。

自動裝配過程

1. 創建 2 個類

分別是部門類 Department 和員工類 Employee 。

package com.pingguo.spring5.autowire;
public class Department {
    @Override
    public String toString() {
        return "Department{}";
    }
}

員工類有個 部門的屬性,表示員工所屬的一個部門。其他方法是為了后續方便演示輸出。

package com.pingguo.spring5.autowire;
public class Employee {
    private Department department;
    public void setDepartment(Department department) {
        this.department = department;
    }
    @Override
    public String toString() {
        return "Employee{" +
                "department=" + department +
                '}';
    }
    public void test() {
        System.out.println(department);
    }
}
2. 配置文件
<?xml version="1.0" encoding="UTF-8"?>
<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.xsd">
    <bean id="employee" class="com.pingguo.spring5.autowire.Employee">
        <property name="department" ref="department"></property>
    </bean>
    <bean id="department" class="com.pingguo.spring5.autowire.Department"></bean>
</beans>
3. 測試方法
@Test
    public void test5() {
        ApplicationContext context =
                new ClassPathXmlApplicationContext("bean5.xml");
        Employee employee = context.getBean("employee", Employee.class);
        System.out.println(employee);
    }

運行結果:

Employee{department=Department{}}
Process finished with exit code 0

ok,到這里,其實就是手動裝配的過程。

實現自動裝配,在配置文件里,通過 bean 標簽里的屬性 autowire 來配置:

  • autowire="byName":根據屬性名稱自動注入。

  • autowire="byType":根據屬性類型自動注入。

1)byName 演示

注入值的bean的 id 值和類屬性名稱一致,比如:

spring?IOC容器的Bean管理XML自動裝配怎么實現

修改配置文件,加上 autowire="byName",然后注釋掉 property。

<bean id="employee" class="com.pingguo.spring5.autowire.Employee" autowire="byName">
        <!--<property name="department" ref="department"></property>-->
    </bean>
    <bean id="department" class="com.pingguo.spring5.autowire.Department"></bean>

執行測試函數:

Employee{department=Department{}}
Process finished with exit code 0

跟使用 property 手動裝配結果一致。

2)byType 演示

要注入值的 bean 的類型與 屬性里的一致,比如:

spring?IOC容器的Bean管理XML自動裝配怎么實現

現在繼續修改配置文件,加上 autowire="byType",然后注釋掉 property。

<bean id="employee" class="com.pingguo.spring5.autowire.Employee" autowire="byType">
        <!--<property name="department" ref="department"></property>-->
    </bean>
    <bean id="department" class="com.pingguo.spring5.autowire.Department"></bean>

再次執行測試:

Employee{department=Department{}}
Process finished with exit code 0

跟使用 property 手動裝配結果一致。

感謝各位的閱讀,以上就是“spring IOC容器的Bean管理XML自動裝配怎么實現”的內容了,經過本文的學習后,相信大家對spring IOC容器的Bean管理XML自動裝配怎么實現這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

井冈山市| 沈丘县| 南开区| 唐海县| 克拉玛依市| 巩义市| 阳泉市| 绍兴县| 泊头市| 班玛县| 潜江市| 高碑店市| 昌平区| 镇宁| 嘉禾县| 隆尧县| 米脂县| 海林市| 锦屏县| 翼城县| 桂平市| 两当县| 永济市| 孝昌县| 玉溪市| 双江| 报价| 太仓市| 泰兴市| 许昌市| 滨州市| 应城市| 昌乐县| 光泽县| 霍林郭勒市| 望江县| 庆安县| 迭部县| 宁远县| 翼城县| 陆良县|