您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關如何使用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”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。