今天就跟大家聊聊有關(guān)Spring中怎么利用@Resource配置依賴,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
成都創(chuàng)新互聯(lián)公司擁有一支富有激情的企業(yè)網(wǎng)站制作團隊,在互聯(lián)網(wǎng)網(wǎng)站建設(shè)行業(yè)深耕十年,專業(yè)且經(jīng)驗豐富。十年網(wǎng)站優(yōu)化營銷經(jīng)驗,我們已為成百上千中小企業(yè)提供了網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計解決方案,定制制作,設(shè)計滿意,售后服務(wù)無憂。所有客戶皆提供一年免費網(wǎng)站維護!一 配置
二 接口
Axe
package org.crazyit.app.service;public interface Axe{ public String chop();}
Person
package org.crazyit.app.service;public interface Person{ public void useAxe();}
三 Bean
Chinese
package org.crazyit.app.service.impl;import org.springframework.stereotype.*;import javax.annotation.*;import org.crazyit.app.service.*;@Componentpublic class Chinese implements Person{ private Axe axe; // axe的setter方法 @Resource(name="stoneAxe") public void setAxe(Axe axe) { this.axe = axe; } // 實現(xiàn)Person接口的useAxe()方法 public void useAxe() { // 調(diào)用axe的chop()方法, // 表明Person對象依賴于axe對象 System.out.println(axe.chop()); }}
SteelAxe
package org.crazyit.app.service.impl;import org.springframework.stereotype.*;import org.crazyit.app.service.*;@Componentpublic class SteelAxe implements Axe{ public String chop() { return "鋼斧砍柴真快"; }}
StoneAxe
package org.crazyit.app.service.impl;import org.springframework.stereotype.*;import org.crazyit.app.service.*;@Componentpublic class StoneAxe implements Axe{ 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) { // 創(chuàng)建Spring容器 ApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml"); Person person = ctx.getBean("chinese" , Person.class); person.useAxe(); }}
五 測試結(jié)果
石斧砍柴好慢
看完上述內(nèi)容,你們對Spring中怎么利用@Resource配置依賴有進一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。