91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

spring使用xml裝配bean的方法

發布時間:2021-02-02 10:58:07 來源:億速云 閱讀:169 作者:小新 欄目:編程語言

小編給大家分享一下spring使用xml裝配bean的方法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

使用XML裝配bean,在bean中調用另一個bean方法,首先建一個Dog類和一個Cat類

package soundsystem;
public class Dog {
private String Cry;//叫聲
//用setter方法注入
public void setCry(String cry) {
  Cry = cry;
}
//定義一個狗叫方法
  public void DogCry(){
    System.out.println("狗叫:"+Cry);
    Cat.CatCry();
    catEat.CatEating();
  }
}
package soundsystem;
public class Cat {
  private String Cry;//叫聲

//用構造函數注入
  public Cat(String cry){
    this.Cry=cry;
  }

//定義一個貓叫方法
  public void CatCry(){
    System.out.println("貓叫:"+Cry);
  }
}

一個配置類Bean_DogXML.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"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

  <bean id="Dog" class="soundsystem.Dog">
    <property name="Cry" value="汪汪汪~"></property>
    <property name="Cat" ref="Cat"></property>
  </bean>

  <bean id="Cat" class="soundsystem.Cat">
    <constructor-arg value="喵~"></constructor-arg>
  </bean>

</beans>

現在開始測試

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();
  }
}

輸出結果:

spring使用xml裝配bean的方法

以上是“spring使用xml裝配bean的方法”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

峨眉山市| 镇康县| 图片| 博爱县| 厦门市| 城口县| 太仓市| 托里县| 商水县| 麻阳| 富阳市| 大荔县| 闽侯县| 广元市| 土默特右旗| 新闻| 庆元县| 莱芜市| 普定县| 永善县| 平陆县| 宝山区| 吉林市| 博客| 阿勒泰市| 武邑县| 务川| 旬阳县| 黄冈市| 彭州市| 界首市| 广平县| 会宁县| 西和县| 五常市| 会东县| 穆棱市| 花垣县| 漠河县| 南安市| 石渠县|