這篇文章主要介紹了spring如何實(shí)現(xiàn)兩個(gè)xml配置文件間的互調(diào),文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
專注于為中小企業(yè)提供網(wǎng)站制作、成都網(wǎng)站制作服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)巴林左旗免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動(dòng)了成百上千家企業(yè)的穩(wěn)健成長(zhǎng),幫助中小企業(yè)通過網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。
首先建兩個(gè)測(cè)試類
package soundsystem; public class Dog { private String Cry; private Cat Cat; public void setCry(String cry) { Cry = cry; } public void setCat(soundsystem.Cat cat) { Cat = cat; } public void DogCry(){ System.out.println("狗叫:"+Cry); Cat.CatCry(); } }
package soundsystem; public class Cat { private String Cry; public Cat(String cry){ this.Cry=cry; } public void CatCry(){ System.out.println("貓叫:"+Cry); } }
然后針對(duì)兩類建兩個(gè)xml配置文件
Bean_DogXML.xml
<?xml version="1.0" encoding="UTF-8"?>
Bean_CatXML.xml
<?xml version="1.0" encoding="UTF-8"?>
現(xiàn)在開始測(cè)試:
package Test; import org.junit.runner.RunWith; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import soundsystem.Cat; import soundsystem.Dog; @RunWith(SpringJUnit4ClassRunner.class) public class Test { @org.junit.Test public static void main(String[] args) { ApplicationContext ap=new ClassPathXmlApplicationContext("config/Bean_DogXML.xml"); Dog dog=(Dog)ap.getBean("Dog"); dog.DogCry(); } }
輸出結(jié)果是:
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。