北京北大青鳥學(xué)校學(xué)術(shù)部提供:
使用Spring,可以使用里面的控制反轉(zhuǎn)把依賴對(duì)象交給Spring管理,并把依賴對(duì)象通過(guò)容器注入到組件內(nèi)部。那么在Spring里面,該如何把對(duì)象注入到組件內(nèi)部呢?北京北大青鳥學(xué)校學(xué)術(shù)部丁老師講解:
創(chuàng)建一個(gè)PersonDao對(duì)象,并把這個(gè)對(duì)象注入到PersonServiceBean中
Java代碼
1. package cn.accp.dao.impl;
2.
3. import cn.accp.dao.PersonDao;
4.
5. public class PersonDaoBean implements PersonDao {
6. public void add(){
7. System.out.println("執(zhí)行PersonDaoBean里的add()方法");
8. }
9. }
面向接口編程,所以要把接口抽取出來(lái)。
Java代碼
1. package cn.accp.dao;
2.
3. public interface PersonDao {
4.
5. public void add();
6.
7. }
接口跟實(shí)現(xiàn)類不要放一塊,接下來(lái),如何將PersonDaoBean對(duì)象注入進(jìn)PersonServiceBean,北京北大青鳥學(xué)校丁老師表示注入方式有兩種:一種是構(gòu)造器參數(shù),另一種是通過(guò)屬性的set方法注入。 下面介紹通過(guò)屬性的set方法我們?cè)撊绾巫⑷隤ersonDaoBean對(duì)象
PersonServiceBean.java
Java代碼
1. package cn.accp.service.impl;
2.
3. import cn.accp.dao.PersonDao;
4. import cn.accp.service.PersonService;
5.
6. public class PersonServiceBean implements PersonService {
7. private PersonDao personDao;
8.
9. public PersonDao getPersonDao() {
10. return personDao;
11. }
12.
13. public void setPersonDao(PersonDao personDao) {
14. this.personDao = personDao;
15. }
16.
17. public void save(){
18. personDao.add();
19. }
20. }
北京北大青鳥學(xué)校丁老師:大家可以看到,在服務(wù)層的這個(gè)類里面,我們并沒(méi)有看到 PersonDaoBean的身影,也就是說(shuō)我們并不關(guān)心這個(gè)實(shí)現(xiàn)類是誰(shuí),我們通過(guò)PersonDao這個(gè)接口去引用注入進(jìn)來(lái)的對(duì)象,在通過(guò)接口調(diào)用它的 方法。這樣的話,服務(wù)層的組件和DAO層的組件已經(jīng)進(jìn)行徹底的解耦了。
看下在beans.xml里如何為personDao這個(gè)屬性注入PersonDaoBean這個(gè)bean呢? 首先要把personDao這個(gè)bean配置在Spring中
Xml代碼
1.
2.
4. xsi:schemaLocation="http://www.springframework.org/schema/beans
5. http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
6.
7.
8.
9.
10.
property這個(gè)元素就是用于為屬性注入值,name填寫的是屬性的名稱
ref 填寫的值就是我們要注入的bean的名稱。Spring會(huì)根據(jù)這個(gè)名稱從Spring容器里面得到這個(gè)bean,因?yàn)檫@個(gè)bean默認(rèn)在Spring容器 實(shí)例化后就會(huì)被實(shí)例化,所以它在容器里面根據(jù)ref里的名稱得到相應(yīng)的bean,然后把這個(gè)bean通過(guò)反射技術(shù)就付給了
我們看下我們注入的personDao這個(gè)bean是否能夠成功注入呢? 北京北大青鳥學(xué)校丁老師提示:判斷是否能夠成功注入很簡(jiǎn)單,在PersonServiceBean.java里的save方法,調(diào)用了personDao.add()方法,如果注入不 成功的話,就會(huì)出現(xiàn)空指針異常;如果能輸出add方法里面打印的那句話,就代表注入是成功的
Java代碼
1. package junit.test;
2.
3. import org.junit.BeforeClass;
4. import org.junit.Test;
5. import org.springframework.context.support.AbstractApplicationContext;
6. import org.springframework.context.support.ClassPathXmlApplicationContext;
7.
8. import cn.accp.service.PersonService;
9.
10. public class SpringTest {
11.
12. @BeforeClass
13. public static void setUpBeforeClass() throws Exception {
14. }
15.
16. @Test public void instanceSpring(){
17. AbstractApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml");
18. PersonService personService = (PersonService)ctx.getBean("personService");
19. personService.save();
20. ctx.close();
21. }
22. }
運(yùn)行單元測(cè)試代碼,控制臺(tái)輸出“執(zhí)行PersonDaoBean里的add()方法”。說(shuō)明注入成功了。
北京北大青鳥學(xué)校提醒:大家思考下控制反轉(zhuǎn)這個(gè)概念,原先我們對(duì)象的創(chuàng)建是由應(yīng)用本身創(chuàng)建的。現(xiàn)在對(duì)象的創(chuàng)建是由容器幫我們創(chuàng)建,并且由容器注入進(jìn)來(lái),這時(shí)候控制權(quán)發(fā)生了轉(zhuǎn)移,這就是所謂的控制反轉(zhuǎn)。