這篇文章給大家介紹在Spring中注入依賴的方法有哪些,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來(lái)自于我們對(duì)這個(gè)行業(yè)的熱愛(ài)。我們立志把好的技術(shù)通過(guò)有效、簡(jiǎn)單的方式提供給客戶,將通過(guò)不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長(zhǎng)期合作伙伴,公司提供的服務(wù)項(xiàng)目有:域名注冊(cè)、網(wǎng)頁(yè)空間、營(yíng)銷軟件、網(wǎng)站建設(shè)、涿鹿網(wǎng)站維護(hù)、網(wǎng)站推廣。
Set方法注入:
原理:通過(guò)類的setter方法完成依賴關(guān)系的設(shè)置
name屬性的取值依setter方法名而定,要求這個(gè)類里面這個(gè)對(duì)應(yīng)的屬性必須有setter方法。
Set方法注入時(shí)spring中配置文件:
<?xml version="1.0" encoding="UTF-8"?>土豪金
定義Car類:
package org.spring01; public class Car { private String name;//車(chē)名 private String color;//顏色 private String clas;//等級(jí) 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;//他的車(chē) 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 + "]"; } }
測(cè)試類:
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); } }
使用單元測(cè)試(JUnit)測(cè)試toGetPerson()方法,結(jié)果為:
Person [name=張三, age=11, car=Car [name=奔馳, color=土豪金, clas=高級(jí)轎車(chē)]]
構(gòu)造方法注入:
原理:通過(guò)構(gòu)造函數(shù)完成依賴關(guān)系的設(shè)定
構(gòu)造注入指的是在接受注入的類中,定義一個(gè)構(gòu)造方法,并在構(gòu)造方法的參數(shù)中定義需要注入的元素,其中,index表示構(gòu)造方法中的參數(shù)索引(第一個(gè)參數(shù)索引為0)。
構(gòu)造方法注入時(shí)spring中配置文件:
<?xml version="1.0" encoding="UTF-8"?>白色
定義Car類:
package org.spring02; public class Car { private String name;//車(chē)名 private String color;//顏色 private String clas;//等級(jí) 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;//他的車(chē) 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 + "]"; } }
測(cè)試類:
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); } }
使用單元測(cè)試(JUnit)測(cè)試toGetPerson()方法,結(jié)果為:
Person [name=李四, age=23, car=Car [name=大眾, color=白色, clas=中級(jí)轎車(chē)]]
上面的例子都采用了單元測(cè)試的方法檢測(cè)運(yùn)行結(jié)果,需要導(dǎo)庫(kù): JUnit
Demo的大體結(jié)構(gòu):
我們可以看到,set方法和構(gòu)造方法都可以設(shè)值成功, 實(shí)際開(kāi)發(fā)中最常用到的是set方法設(shè)值。但這兩種依賴注入的方式并沒(méi)有絕對(duì)的好壞,只是使用的場(chǎng)合不同。
使用構(gòu)造注入可以在構(gòu)建對(duì)象的同時(shí)完成依賴關(guān)系到的建立,所以如果要建立的對(duì)象的關(guān)系很多,使用構(gòu)造注入會(huì)在構(gòu)造方法上留下很多參數(shù),可讀性極差,所以當(dāng)對(duì)象的關(guān)系比較多的時(shí)候采用set方法注入。
使用set方法注入是通過(guò)類的setter方法完成依賴關(guān)系的設(shè)置的,所以不能保證相關(guān)的數(shù)據(jù)在執(zhí)行時(shí)不被更改設(shè)定。所以如果想使一些數(shù)據(jù)變?yōu)橹蛔x或者私有,就要采用構(gòu)造注入了。
建議采用以set注入為主,構(gòu)造注入為輔的注入策略。對(duì)于依賴關(guān)系無(wú)須變化的注入,盡量采用構(gòu)造注入;而其他的依賴關(guān)系的注入,則考慮采用set注入。
關(guān)于在Spring中注入依賴的方法有哪些就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。