中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

在Spring中注入依賴的方法有哪些

發布時間:2020-11-19 16:15:48 來源:億速云 閱讀:154 作者:Leah 欄目:編程語言

這篇文章給大家介紹在Spring中注入依賴的方法有哪些,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

Set方法注入:

原理:通過類的setter方法完成依賴關系的設置

name屬性的取值依setter方法名而定,要求這個類里面這個對應的屬性必須有setter方法。

Set方法注入時spring中配置文件:

<&#63;xml version="1.0" encoding="UTF-8"&#63;> 
<beans 
  xmlns="http://www.springframework.org/schema/beans" 
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  xmlns:p="http://www.springframework.org/schema/p" 
  xsi:schemaLocation="http://www.springframework.org/schema/beans  
  http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"> 
 
  <bean id="car" class="org.spring01.Car"> 
    <constructor-arg value="奔馳"></constructor-arg> 
    <constructor-arg type="java.lang.String"> 
      <value>土豪金</value> 
    </constructor-arg> 
    <constructor-arg value="高級轎車"></constructor-arg> 
  </bean> 
   
  <bean id="person" class="org.spring01.Person"> 
    <property name="name" value="張三"></property> 
    <property name="age" value="11"></property> 
    <property name="car" ref="car"></property> 
  </bean> 
</beans>

定義Car類:

package org.spring01; 
 
public class Car { 
  private String name;//車名 
  private String color;//顏色 
  private String clas;//等級 
  public String getName() { 
    return name; 
  } 
  public void setName(String name) { 
    this.name = name; 
  } 
  public String getColor() { 
    return color; 
  } 
  public void setColor(String color) { 
    this.color = color; 
  } 
  public String getClas() { 
    return clas; 
  } 
  public void setClas(String clas) { 
    this.clas = clas; 
  } 
  public Car(String name, String color, String clas) { 
    super(); 
    this.name = name; 
    this.color = color; 
    this.clas = clas; 
  } 
 
  public Car() { 
    super(); 
    // TODO Auto-generated constructor stub 
  } 
  @Override 
  public String toString() { 
    return "Car [name=" + name + ", color=" + color + ", clas=" + clas 
        + "]"; 
  } 
   
} 

定義Person類:

package org.spring01; 
 
public class Person { 
  private String name;//名字 
  private int age;//年齡 
  private Car car;//他的車 
  public String getName() { 
    return name; 
  } 
  public void setName(String name) { 
    this.name = name; 
  } 
  public int getAge() { 
    return age; 
  } 
  public void setAge(int age) { 
    this.age = age; 
  } 
  public Car getCar() { 
    return car; 
  } 
  public void setCar(Car car) { 
    this.car = car; 
  } 
  public Person(String name, int age, Car car) { 
    super(); 
    this.name = name; 
    this.age = age; 
    this.car = car; 
  } 
  public Person() { 
    super(); 
    // TODO Auto-generated constructor stub 
  } 
  @Override 
  public String toString() { 
    return "Person [name=" + name + ", age=" + age + ", car=" + car + "]"; 
  } 
   
} 

測試類:

package org.spring01; 
 
import org.junit.Test; 
import org.springframework.context.ApplicationContext; 
import org.springframework.context.support.ClassPathXmlApplicationContext; 
 
public class SpringTest{ 
    @Test 
    public void toGetPerson(){ 
      ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml"); 
      Person person = (Person) context.getBean("person"); 
      System.out.println(person); 
    } 
    @Test 
    public void toGetCar(){ 
      ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml"); 
      Car car = (Car) context.getBean("car"); 
      System.out.println(car); 
    }   
} 

使用單元測試(JUnit)測試toGetPerson()方法,結果為:

Person [name=張三, age=11, car=Car [name=奔馳, color=土豪金, clas=高級轎車]]

構造方法注入:

原理:通過構造函數完成依賴關系的設定

構造注入指的是在接受注入的類中,定義一個構造方法,并在構造方法的參數中定義需要注入的元素,其中,index表示構造方法中的參數索引(第一個參數索引為0)。

構造方法注入時spring中配置文件:

<&#63;xml version="1.0" encoding="UTF-8"&#63;> 
<beans 
  xmlns="http://www.springframework.org/schema/beans" 
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  xmlns:p="http://www.springframework.org/schema/p" 
  xsi:schemaLocation="http://www.springframework.org/schema/beans  
  http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"> 
 
  <bean id="car" class="org.spring02.Car"> 
    <constructor-arg value="大眾"></constructor-arg> 
    <constructor-arg type="java.lang.String"> 
      <value>白色</value> 
    </constructor-arg> 
    <constructor-arg value="中級轎車"></constructor-arg> 
  </bean> 
   
   
  <bean id="person" class="org.spring02.Person"> 
    <constructor-arg index="0" value="李四"></constructor-arg> 
    <constructor-arg index="1" value="23"></constructor-arg> 
    <constructor-arg index="2" ref="car"></constructor-arg> 
  </bean> 
</beans> 

定義Car類:

package org.spring02; 
 
public class Car { 
  private String name;//車名 
  private String color;//顏色 
  private String clas;//等級 
   
  public Car(String name, String color, String clas) { 
    super(); 
    this.name = name; 
    this.color = color; 
    this.clas = clas; 
  } 
 
  public Car() { 
    super(); 
    // TODO Auto-generated constructor stub 
  } 
  @Override 
  public String toString() { 
    return "Car [name=" + name + ", color=" + color + ", clas=" + clas 
        + "]"; 
  } 
   
} 

定義Person類:

package org.spring02; 
 
public class Person { 
  private String name;//名字 
  private int age;//年齡 
  private Car car;//他的車 
   
  public Person(String name, int age, Car car) { 
    super(); 
    this.name = name; 
    this.age = age; 
    this.car = car; 
  } 
  public Person() { 
    super(); 
    // TODO Auto-generated constructor stub 
  } 
  @Override 
  public String toString() { 
    return "Person [name=" + name + ", age=" + age + ", car=" + car + "]"; 
  } 
   
} 

測試類:

package org.spring02; 
 
import org.junit.Test; 
import org.springframework.context.ApplicationContext; 
import org.springframework.context.support.ClassPathXmlApplicationContext; 
 
public class SpringTest{ 
    @Test 
    public void toGetPerson(){ 
      ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext01.xml"); 
      Person person = (Person) context.getBean("person"); 
      System.out.println(person); 
    } 
    @Test 
    public void toGetCar(){ 
      ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext01.xml"); 
      Car car = (Car) context.getBean("car"); 
      System.out.println(car); 
    } 
} 

使用單元測試(JUnit)測試toGetPerson()方法,結果為:

Person [name=李四, age=23, car=Car [name=大眾, color=白色, clas=中級轎車]]

上面的例子都采用了單元測試的方法檢測運行結果,需要導庫: JUnit

Demo的大體結構:

在Spring中注入依賴的方法有哪些

我們可以看到,set方法和構造方法都可以設值成功, 實際開發中最常用到的是set方法設值。但這兩種依賴注入的方式并沒有絕對的好壞,只是使用的場合不同。

使用構造注入可以在構建對象的同時完成依賴關系到的建立,所以如果要建立的對象的關系很多,使用構造注入會在構造方法上留下很多參數,可讀性極差,所以當對象的關系比較多的時候采用set方法注入。

使用set方法注入是通過類的setter方法完成依賴關系的設置的,所以不能保證相關的數據在執行時不被更改設定。所以如果想使一些數據變為只讀或者私有,就要采用構造注入了。

建議采用以set注入為主,構造注入為輔的注入策略。對于依賴關系無須變化的注入,盡量采用構造注入;而其他的依賴關系的注入,則考慮采用set注入。

關于在Spring中注入依賴的方法有哪些就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

临海市| 沁源县| 安陆市| 焦作市| 崇义县| 曲阳县| 宝清县| 山丹县| 隆昌县| 濉溪县| 波密县| 虎林市| 上思县| 宁晋县| 萍乡市| 长顺县| 呼伦贝尔市| 日喀则市| 溧阳市| 且末县| 黎城县| 烟台市| 松滋市| 延津县| 柳江县| 浠水县| 利川市| 龙游县| 崇礼县| 泽库县| 南雄市| 郓城县| 含山县| 吉木萨尔县| 彭水| 广汉市| 连江县| 延寿县| 内丘县| 临汾市| 肥东县|