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

溫馨提示×

溫馨提示×

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

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

如何使用Spring實現自動裝配Bean

發布時間:2021-05-24 11:52:13 來源:億速云 閱讀:139 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關如何使用Spring實現自動裝配Bean,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

要使用自動裝配,就需要配置 <bean> 元素的 autowire 屬性。autowire 屬性有五個值,具體說明如表 1 所示。
表 1 autowire 的屬性和作用

名稱說明
byName根據 Property 的 name 自動裝配,如果一個 Bean 的 name 和另一個 Bean 中的 Property 的 name 相同,則自動裝配這個 Bean 到 Property 中。
byType根據 Property 的數據類型(Type)自動裝配,如果一個 Bean 的數據類型兼容另一個 Bean 中 Property 的數據類型,則自動裝配。
constructor根據構造方法的參數的數據類型,進行 byType 模式的自動裝配。
autodetect如果發現默認的構造方法,則用 constructor 模式,否則用 byType 模式。
no默認情況下,不使用自動裝配,Bean 依賴必須通過 ref 元素定義。

下面通過案例演示如何實現自動裝配。首先將 applicationContext.xml 配置文件修改成自動裝配形式,如下所示。

<?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:aop="http://www.springframework.org/schema/aop"
xmlns:p="http://www.springframework.org/schema/p" 
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation=" 
http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd 
http://www.springframework.org/schema/aop 
http://www.springframework.org/schema/aop/spring-aop-2.5.xsd 
http://www.springframework.org/schema/tx 
http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<bean id="personDao" class="com.mengma.annotation.PersonDaoImpl" />
<bean id="personService" class="com.mengma.annotation.PersonServiceImpl"
autowire="byName" />
<bean id="personAction" class="com.mengma.annotation.PersonAction"
autowire="byName" />
</beans>

在上述配置文件中,用于配置 personService 和 personAction 的 <bean> 元素中除了 id 和 class 屬性以外,還增加了 autowire 屬性,并將其屬性值設置為 byName(按屬性名稱自動裝配)。

默認情況下,配置文件中需要通過 ref 裝配 Bean,但設置了 autowire="byName",Spring 會在配置文件中自動尋找與屬性名字 personDao 相同的 <bean>,找到后,通過調用 setPersonDao(PersonDao personDao)方法將 id 為 personDao 的 Bean 注入 id 為 personService 的 Bean 中,這時就不需要通過 ref 裝配了。

使用 JUnit 再次運行測試類中的 test() 方法,控制臺的顯示結果如圖所示。

如何使用Spring實現自動裝配Bean

關于“如何使用Spring實現自動裝配Bean”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

抚松县| 拉萨市| 赤峰市| 瑞安市| 黎平县| 平遥县| 漾濞| 托克逊县| 吉木乃县| 红桥区| 安多县| 南川市| 本溪市| 德阳市| 通化县| 平南县| 玉环县| 卢龙县| 广州市| 三原县| 庆阳市| 肇州县| 米易县| 武川县| 崇仁县| 思茅市| 迁西县| 突泉县| 龙泉市| 齐河县| 巴东县| 开封市| 南靖县| 涞水县| 桃园市| 贞丰县| 镇巴县| 禹州市| 连城县| 工布江达县| 井冈山市|