亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

Spring實戰之使用c:命名空間簡化配置操作示例

發布時間:2020-08-28 15:14:06 來源:腳本之家 閱讀:273 作者:cakincqm 欄目:編程語言

本文實例講述了Spring使用c命名空間簡化配置操作。分享給大家供大家參考,具體如下:

一 配置

<?xml version="1.0" encoding="GBK"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xmlns="http://www.springframework.org/schema/beans"
   xmlns:c="http://www.springframework.org/schema/c"
   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"
      c:axe-ref="steelAxe" c:age="29"/>
   <!-- 配置chinese實例,其實現類是Chinese -->
   <bean id="chinese2" class="org.crazyit.app.service.impl.Chinese"
      c:_0-ref="stoneAxe" c:_1="29"/>
   <!-- 配置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;
   private int age;
   public Chinese(){ }
   // axe的setter方法
   public void setAxe(Axe axe)
   {
      this.axe = axe;
   }
   // age的setter方法
   public void setAge(int age)
   {
      this.age = age;
   }
   // 實現Person接口的useAxe()方法
   public void useAxe()
   {
      System.out.println(axe.chop());
      System.out.println("age成員變量的值:" + age);
   }
}

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();
    Person p1 = ctx.getBean("chinese2" , Person.class);
    // 調用useAxe()方法
    p1.useAxe();
  }
}

五 運行

鋼斧砍柴真快
age成員變量的值:29
石斧砍柴好慢
age成員變量的值:29

更多關于java相關內容感興趣的讀者可查看本站專題:《Spring框架入門與進階教程》、《Java數據結構與算法教程》、《Java操作DOM節點技巧總結》、《Java文件與目錄操作技巧匯總》和《Java緩存操作技巧匯總》

希望本文所述對大家java程序設計有所幫助。

向AI問一下細節

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

AI

巴彦县| 桃江县| 汪清县| 衡山县| 双柏县| 即墨市| 乌兰察布市| 塔城市| 烟台市| 大厂| 定远县| 德钦县| 苏尼特左旗| 涞源县| 大悟县| 沾益县| 凤阳县| 长垣县| 东莞市| 两当县| 虹口区| 宣城市| 定安县| 林西县| 修水县| 十堰市| 绩溪县| 乐亭县| 河北省| 伊宁市| 都江堰市| 定日县| 湟中县| 陇西县| 东阿县| 三河市| 新丰县| 东丰县| 保康县| 安新县| 蕉岭县|