Spring實現(xiàn)依賴關系注入之后的行為?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
創(chuàng)新互聯(lián)建站是一家專注于成都網(wǎng)站建設、成都做網(wǎng)站與策劃設計,寬甸網(wǎng)站建設哪家好?創(chuàng)新互聯(lián)建站做網(wǎng)站,專注于網(wǎng)站建設10余年,網(wǎng)設計領域的專業(yè)建站公司;建站業(yè)務涵蓋:寬甸等地區(qū)。寬甸做網(wǎng)站價格咨詢:13518219792一 配置
二 接口
1 Axe
package org.crazyit.app.service; public interface Axe { public String chop(); }
2 Person
package org.crazyit.app.service; public interface Person { public void useAxe(); }
三 Bean
1 Chinese
package org.crazyit.app.service.impl; import org.springframework.beans.factory.InitializingBean; import org.springframework.beans.factory.*; import org.springframework.context.*; import org.crazyit.app.service.*; public class Chinese implements Person , InitializingBean , BeanNameAware, ApplicationContextAware { private Axe axe; public void setBeanName(String beanName) { System.out.println("===setBeanName==="); } public void setApplicationContext(ApplicationContext ctx) { System.out.println("===setApplicationContext==="); } public Chinese() { System.out.println("Spring實例化主調bean:Chinese實例..."); } // axe的setter方法 public void setAxe(Axe axe) { System.out.println("Spring調用setAxe()執(zhí)行依賴注入..."); this.axe = axe; } public void useAxe() { System.out.println(axe.chop()); } // 測試用的初始化方法 public void init() { System.out.println("正在執(zhí)行初始化方法 init..."); } // 實現(xiàn)InitializingBean接口必須實現(xiàn)的方法 public void afterPropertiesSet() throws Exception { System.out.println("正在執(zhí)行初始化方法 afterPropertiesSet..."); } }
2 SteelAxe
package org.crazyit.app.service.impl; import org.crazyit.app.service.*; public class SteelAxe implements Axe { public SteelAxe() { System.out.println("Spring實例化依賴bean:SteelAxe實例..."); } public String chop() { return "鋼斧砍柴真快"; } }
四 測試類
package lee; import org.springframework.context.*; import org.springframework.context.support.*; import org.crazyit.app.service.*; public class BeanTest { public static void main(String[] args)throws Exception { ApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml"); Person p = ctx.getBean("chinese" , Person.class); p.useAxe(); } }
五 測試結果
Spring實例化依賴bean:SteelAxe實例...
Spring實例化主調bean:Chinese實例...
Spring調用setAxe()執(zhí)行依賴注入...
===setBeanName===
===setApplicationContext===
正在執(zhí)行初始化方法 afterPropertiesSet...
正在執(zhí)行初始化方法 init...
鋼斧砍柴真快
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注創(chuàng)新互聯(lián)網(wǎng)站建設公司行業(yè)資訊頻道,感謝您對創(chuàng)新互聯(lián)建站的支持。
另外有需要云服務器可以了解下創(chuàng)新互聯(lián)建站www.cdcxhl.com,海內外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、建站服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。