這篇文章將為大家詳細講解有關如何使用Spring實現(xiàn)自動裝配Bean,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
讓客戶滿意是我們工作的目標,不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領域值得信任、有價值的長期合作伙伴,公司提供的服務項目有:域名注冊、網(wǎng)站空間、營銷軟件、網(wǎng)站建設、麻章網(wǎng)站維護、網(wǎng)站推廣。
要使用自動裝配,就需要配置 <bean> 元素的 autowire 屬性。autowire 屬性有五個值,具體說明如表 1 所示。
表 1 autowire 的屬性和作用
名稱 | 說明 |
---|---|
byName | 根據(jù) Property 的 name 自動裝配,如果一個 Bean 的 name 和另一個 Bean 中的 Property 的 name 相同,則自動裝配這個 Bean 到 Property 中。 |
byType | 根據(jù) Property 的數(shù)據(jù)類型(Type)自動裝配,如果一個 Bean 的數(shù)據(jù)類型兼容另一個 Bean 中 Property 的數(shù)據(jù)類型,則自動裝配。 |
constructor | 根據(jù)構造方法的參數(shù)的數(shù)據(jù)類型,進行 byType 模式的自動裝配。 |
autodetect | 如果發(fā)現(xiàn)默認的構造方法,則用 constructor 模式,否則用 byType 模式。 |
no | 默認情況下,不使用自動裝配,Bean 依賴必須通過 ref 元素定義。 |
下面通過案例演示如何實現(xiàn)自動裝配。首先將 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實現(xiàn)自動裝配Bean”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
當前文章:如何使用Spring實現(xiàn)自動裝配Bean
網(wǎng)站網(wǎng)址:http://www.rwnh.cn/article48/gcgphp.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供微信小程序、建站公司、網(wǎng)站設計公司、App開發(fā)、營銷型網(wǎng)站建設、Google
聲明:本網(wǎng)站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)