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

溫馨提示×

溫馨提示×

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

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

怎么在Spring框架中構造注入

發布時間:2021-04-13 16:09:37 來源:億速云 閱讀:105 作者:Leah 欄目:編程語言

今天就跟大家聊聊有關怎么在Spring框架中構造注入,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

一 配置

<?xml version="1.0" encoding="GBK"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xmlns="http://www.springframework.org/schema/beans"
   xsi:schemaLocation="http://www.springframework.org/schema/beans
   http://www.springframework.org/schema/beans/spring-beans-4.0.xsd">
   <!-- 配置chinese實例,其實現類是Chinese -->
   <bean id="chinese" class="org.crazyit.app.service.impl.Chinese">
      <!-- 下面只有一個constructor-arg子元素,
        驅動Spring調用Chinese帶一個參數的構造器來創建對象 -->
      <constructor-arg ref="steelAxe" type="org.crazyit.app.service.Axe"/>
   </bean>
   <!-- 配置stoneAxe實例,其實現類是StoneAxe -->
   <bean id="stoneAxe" class="org.crazyit.app.service.impl.StoneAxe"/>
   <!-- 配置steelAxe實例,其實現類是SteelAxe -->
   <bean id="steelAxe" class="org.crazyit.app.service.impl.SteelAxe"/>
</beans>

二 接口

Axe

package org.crazyit.app.service;
public interface Axe
{
   // Axe接口里有個砍的方法
   public String chop();
}

Person

package org.crazyit.app.service;
public interface Person
{
   // 定義一個使用斧子的方法
   public void useAxe();
}

三 實現

Chinese

package org.crazyit.app.service.impl;
import org.crazyit.app.service.*;
public class Chinese implements Person
{
   private Axe axe;
   // 構造注入所需的帶參數的構造器
   public Chinese(Axe axe)
   {
      this.axe = axe;
   }
   // 實現Person接口的useAxe()方法
   public void useAxe()
   {
      // 調用axe的chop()方法
      // 表明Person對象依賴于axe對象
      System.out.println(axe.chop());
   }
}

StoneAxe

package org.crazyit.app.service.impl;
import org.crazyit.app.service.*;
public class StoneAxe implements Axe
{
   public String chop()
   {
      return "石斧砍柴好慢";
   }
}

SteelAxe

package org.crazyit.app.service.impl;
import org.crazyit.app.service.*;
public class SteelAxe implements Axe
{
   public String chop()
   {
      return "鋼斧砍柴真快";
   }
}

四 測試類

package lee;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.crazyit.app.service.*;
public class BeanTest
{
  public static void main(String[] args)throws Exception
  {
    // 創建Spring容器
    ApplicationContext ctx = new
      ClassPathXmlApplicationContext("beans.xml");
    // 獲取chinese 實例
    Person p = ctx.getBean("chinese" , Person.class);
    // 調用useAxe()方法
    p.useAxe();
  }
}

看完上述內容,你們對怎么在Spring框架中構造注入有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

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

AI

揭东县| 铜鼓县| 盐亭县| 昌图县| 黄浦区| 通化市| 墨脱县| 西盟| 工布江达县| 临邑县| 新蔡县| 文山县| 临城县| 太湖县| 金溪县| 辽阳县| 江孜县| 错那县| 化隆| 安义县| 景宁| 耒阳市| 闻喜县| 台中市| 桐乡市| 云阳县| 大荔县| 延寿县| 遂溪县| 石屏县| 博客| 镇安县| 古丈县| 普安县| 樟树市| 许昌市| 巴林左旗| 富阳市| 上高县| 永兴县| 瑞安市|