浅析控制反转和依赖注入

 控制反转(IOC)和依赖注入(DI)

在普通的编码中,如果一个类A依赖于另一个类B,那么为了实现相应功能,则需要使用new关键字,在这个A类中new类B的一个实例对象出来,这就导致了,类B的生命周期完全由类A来进行控制,并且带来较高的耦合度,如果A的功能需要改动,那么必须修改B的业务逻辑 ,假如A类还被其他类所依赖,那么可能会带来打地鼠一样的问题。为了使得代码间的耦合度降低,则将类的控制权转移到第三方,也就是交给spring容器管理,也就是IOC。那么为了维护类之间的依赖关系,则需要进行依赖注入。

package cn.itcast.service.impl;

public class PersonDaoBean {
    public void add(){
    	System.out.println("我是add方法,用于测试依赖注入");
    }
}

package cn.itcast.service.impl;


public class PersonServiceBean implements PersonService {
    /* (non-Javadoc)
	 * @see cn.itcast.service.impl.PersonService#save()
	 */
	private PersonDaoBean personDao;
	
	PersonServiceBean(){
		System.out.println("实例化 ");
	}
	public PersonDaoBean getPersonDao(){
		return personDao;
	}
	public void setPersonDao(PersonDaoBean personDao){
		this.personDao=personDao;
	}
	public void init(){
		System.out.println("初始化");
	}
    public void destory(){
    	System.out.println("关闭资源");
    }
	public void save(){
    	System.out.println("我是save方法");
    	personDao.add();
    }
}

//在PersonServiceBean类中的save()方法中需要调用PersonDaoBean类中的add()方法,此时不需要在

PersonServiceBean类中直接new出一个PersonDaoBean对象,而是在该类中建立PersonDaoBean属性以及建立

set和get方法,并且在。spring配置文件中配置PersonDaoBean类和PersonServiceBean类,并且通过

<property name="personDao" ref="personDao"></property>给PersonServiceBean中的personDao属性
赋值即可,此时通过这样的配置可以将PersonDaoBean对象注入进去

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd">
        <bean id="personDao" class="cn.itcast.service.impl.PersonDaoBean"></bean>
     <bean id="personService" class="cn.itcast.service.impl.PersonServiceBean" 
           init-method="init" destroy-method="destory">
          <property name="personDao" ref="personDao"></property>
     </bean>
</beans>

package springTest;


import static org.junit.Assert.*;


import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.AbstractApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;


import cn.itcast.service.impl.PersonService;


public class SpringTest {


	@Test
	public void test() {
		AbstractApplicationContext context =new ClassPathXmlApplicationContext("beans.xml");
	    PersonService ps1=(PersonService) context.getBean("personService");
	    //PersonService ps2=(PersonService) context.getBean("personService");
	    context.close();
	    //System.out.println(ps1==ps2);
	    ps1.save();
	}


}


 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

浪舟子

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值