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

溫馨提示×

溫馨提示×

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

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

怎么在Spring中利用xml文件配置Bean

發布時間:2021-05-25 16:36:26 來源:億速云 閱讀:183 作者:Leah 欄目:編程語言

這篇文章將為大家詳細講解有關怎么在Spring中利用xml文件配置Bean,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

通過全類名來配置:

class:bean的全類名,通過反射的方式在IOC容器中創建Bean,所以要求bean中必須有一個無參的構造器。

  <bean id="helloWorld" class="com.gong.spring.beans.HelloWorld">
    <property name="name" value="jack"></property>
  </bean>

在springIOC容器讀取Bean配置創建Bean的實例之前,需要對容器進行實例化。spring提供了兩種類型的IOC容器實現:

Beanfactory:IOC容器的基本實現。

ApplicationContext:提供了更多高級特性,是BeanFactory的子接口。

ApplicationContext主要實現類:

  • ClassPathXmlApplicationContext:從類路徑加載配置文件。

  • FileSystemXmlApplicationContext:從文件系統中加載配置文件。

  • ConfigureableApplicationContext擴展于ApplicationContext,新增兩個方法refresh()和close(),讓ApplicationContext具有啟動、刷新和關閉上下文的能力。

ApplicaiotnContex在初始化時就上下文時就實例化所有單例的Bean。

WebApplicationContext是專門用于WEB應用的,它允許從相對于WEB根目錄的路徑中完成初始化工作。

依賴注入的三種方式

(1)屬性注入:通過setter方法:<property name="name" value="jack"></property>,即在bean中存在setter方法。

(2)構造器注入:<constructor-arg value="" index="0" type=""></constructor-arg>,根據構造方法中初始化的參數進行一一設置,同時,可以根據參數的順序index,參數的類型type來區分重載的構造器。

(3)工廠方法注入(很少使用,不推薦)

<bean id="student" class="com.gong.spring.beans.Student">    //第一種方式注入屬性值
    <constructor-arg value="tom" index="0" type="java.lang.String"></constructor-arg>
    <constructor-arg value="12" index="1" type="int"></constructor-arg>    //第二種方式注入屬性值
    <constructor-arg index="2" type="double">
      <value>99.00</value>
    </constructor-arg>
  </bean>
package com.gong.spring.beans;

public class Student {
  private String name;
  private int age;
  private double score;
  public Student(String name,int age,double score) {
    this.name = name;
    this.age = age;
    this.score = score;
  }
  @Override
  public String toString() {
    return "Student [name=" + name + ", age=" + age + ", score=" + score + "]";
  }
  
}
public static void main(String[] args) {
    //1.創建spring的IOC容器對象
    ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml");
    //2.從容器中獲取Bean實例
    Student student = (Student) ctx.getBean("student"); 
    System.out.println(student.toString());
  }

輸出:

怎么在Spring中利用xml文件配置Bean

當屬性值有特殊符號時,要用以下方式:

<constructor-arg index="0" type="java.lang.String">
      <value><![CDATA[<tom>]]></value>
    </constructor-arg>

關于怎么在Spring中利用xml文件配置Bean就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

靖江市| 阳谷县| 五寨县| 丽水市| 天台县| 云霄县| 同心县| 招远市| 南宫市| 惠来县| 平阳县| 酒泉市| 西城区| 宝清县| 三明市| 江华| 张家口市| 普兰店市| 茂名市| 西安市| 高雄市| 德惠市| 卢湾区| 盘锦市| 伊金霍洛旗| 洮南市| 宜春市| 明溪县| 密云县| 开远市| 西平县| 辽中县| 嵩明县| 长兴县| 横山县| 洞口县| 宁蒗| 来安县| 西和县| 辽宁省| 安化县|