自動裝配(AutoWire),裝配(AutoWire)

來源:互聯網
上載者:User

自動裝配(AutoWire),裝配(AutoWire)

根據 autowire 的配置選擇裝配策略

byName 選擇和屬性名稱 name 一致的 bean 進行裝配;

byType 根據類型選擇,如果對應的類型匹配到多個bean,則會報錯,如下配置:

 1 <?xml version="1.0" encoding="UTF-8"?> 2 <beans xmlns="http://www.springframework.org/schema/beans" 3        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 4        xsi:schemaLocation="http://www.springframework.org/schema/beans 5            http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"> 6  7   <bean name="userDAO1" class="com.bjsxt.dao.impl.UserDAOImpl"> 8       <property name="daoId" value="1"></property> 9   </bean>10   11   <bean name="userDAO2" class="com.bjsxt.dao.impl.UserDAOImpl">12       <property name="daoId" value="2"></property>13   </bean>14 15   <bean id="userService" class="com.bjsxt.service.UserService" scope="singleton" autowire="byType">16       <!-- <property name="userDAO">17           <ref bean="userDAO1"/>18       </property> -->19   </bean>20   21 </beans>

報錯:

還能配置在 beans 標籤下,設定整個設定檔的裝配策略,裡面的值也是那幾個配置。

代碼連結: http://pan.baidu.com/s/1slPPUzz 密碼: 1d9e

jar包連結: http://pan.baidu.com/s/1pKAKAQB 密碼: fjc3

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.