Spring学习笔记(二)

1)、古代社会:你是个苦逼的农民伯伯,你某天想吃鱼,那你就得自己先弄一根鱼竿,然后跑到鱼塘去钓鱼,如果你是个公子哥你只需要对你的下人说一句:我要吃鱼,鱼就自动放在你的面前。
2)、前后两种场景最大的区别在于:前者你需要自己动手去钓,去劳动去创造(new),而后者,只要你有需求,别人就会为你创建好,直接提供给你现成的。
3)、职责问题:我要吃鱼,我管你是怎么钓的,在哪儿钓的,我只需要一条鱼然后吃掉它就可以了,所以调用者(我)的职责是吃鱼,而创建对象(钓鱼)的行为对调用者(我)来说是毫无意义的。
4)、Spring依赖注入的好处就是:你不需要关心你所需要的东西是如何创建的,你只要把精力放在你自己的业务逻辑上(吃鱼)就行了,对象之间的依赖关系由Spring容器去维护,当你需要的时候它会自动给你准备好。

 

1、依赖注入的第一种方式(设值注入),新建一个Person接口

package com.sxit.service;

public interface Person {

	public void useFishingRod();		//使用鱼竿
}

2、新建一个FishingRod接口:

package com.sxit.service;

public interface FishingRod {
	
	public void fishing();		//钓鱼
}

3、Person的实现类Chinese:

package com.sxit.service.impl;

import com.sxit.service.FishingRod;
import com.sxit.service.Person;

public class Chinese implements Person {

	private FishingRod fishingRod;	//鱼竿
	
	public void useFishingRod() {
		fishingRod.fishing();	//开始钓鱼
	}

	public FishingRod getFishingRod() {
		return fishingRod;
	}

	public void setFishingRod(FishingRod fishingRod) {
		this.fishingRod = fishingRod;
	}
}

4、FishingRod的实现类:

package com.sxit.service.impl;

public class FishingRod implements com.sxit.service.FishingRod {

	public void fishing() {
		System.out.println("哈哈,Spring开始用木质鱼竿给我钓鱼啦!");
	}
}

 

5、Bena2.xml配置:

 

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
	xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:oscache="http://www.springmodules.org/schema/oscache"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd http://www.springmodules.org/schema/oscache http://www.springmodules.org/schema/cache/springmodules-oscache.xsd">

	<bean id="fishingRod" class="com.sxit.service.impl.FishingRod" />

	<bean id="Chinese" class="com.sxit.service.impl.Chinese">
		<property name="fishingRod" ref="fishingRod"/>
	</bean>

</beans>

6、测试类Test2:

package com.test;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.sxit.service.impl.Chinese;

public class Test2 {

	public static void main(String[] args) {
		
		ApplicationContext apc = new ClassPathXmlApplicationContext("Bean2.xml");
		Chinese chinese = apc.getBean("Chinese", Chinese.class);
		chinese.useFishingRod();
	}
}

7、打印信息:

哈哈,Spring开始用木质鱼竿给我钓鱼啦!

8、总结:

1)、Chinese对象(我)依赖于FishingRod对象(鱼竿)去钓鱼,Chinese类中FishingRod属性只是一个接口,并不是具体实现类,这个属性的实例是由Spring根据Bean2.xml里的信息自动注入的。
2)、Chinese对象并不知道我是用什么样的鱼竿去钓鱼,完全由Spring配置文件信息来决定,代码里以松耦合的方式来维持这两个对象之间的关系,之前我们也许是用木质鱼竿钓鱼,现在如果要换成铁质鱼竿钓鱼,只需要改一下配置文件里的ref值指向铁质鱼竿实现类的Bean Id就行了。
3)、设值注入是在Spring根据配置文件调用无参构造函数实例化对象后,通过对应的setter方法来注入属性值。

 

 

你可能感兴趣的:(spring)