七、Bean的自动装配
- 自动装配是Spring满足bean依赖的一种方式
- spring会在上下文中自动寻找,并自动给bean装配属性
在Spring中有三种装配的方式
- 在xml显示的配置【之前用的都是这种方式】
- 在java中显示配置
- 隐式的自动装配bean【重要】
1. 环境搭建
- 一个人有两个宠物
Cat
public class Cat { public void shout(){ System.out.println("喵"); } }
Dog
public class Dog { public void shout(){ System.out.println("汪"); } }
People
public class People { private Cat cat; private Dog dog; private String name; public Cat getCat() { return cat; } public void setCat(Cat cat) { this.cat = cat; } public Dog getDog() { return dog; } public void setDog(Dog dog) { this.dog = dog; } public String getName() { return name; } public void setName(String name) { this.name = name; } @Override public String toString() { return "People{" + "cat=" + cat + ", dog=" + dog + ", name='" + name + '\'' + '}'; } }
beans.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" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> <bean id="cat" class="com.hxl.pojo.Cat"/> <bean id="dog" class="com.hxl.pojo.Dog"/> <bean id="people" class="com.hxl.pojo.People"> <property name="name" value="王木木"/> <property name="cat" ref="cat"/> <property name="dog" ref="dog"/> </bean> </beans>
MyTest
import com.hxl.pojo.People; import org.junit.Test; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; public class MyTest { @Test public void test1(){ ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml"); People people = (People) context.getBean("people",People.class); people.getDog().shout(); people.getCat().shout(); } }
我们发现上面有好多代码是重复的,那如何解决呢?
2. ByName自动装配
和自己对象set方法后面的值对应
<bean id="cat" class="com.hxl.pojo.Cat"/> <bean id="dog" class="com.hxl.pojo.Dog"/> <!-- byName:会自动在容器上下文中查找,和自己对象set方法后面的值对应的beanid --> <bean id="people" class="com.hxl.pojo.People" autowire="byName"> <property name="name" value="王木木"/> </bean>
如果id不一样就会报错,比如id=“dog1”
3. ByType自动装配
要保证类型全局唯一。
<bean id="dog111" class="com.hxl.pojo.Dog"/> <!-- byType:会自动在容器上下文中查找,和自己对象属性相同的bean --> <bean id="people" class="com.hxl.pojo.People" autowire="byType"> <property name="name" value="王木木"/> </bean>
此时也可以运行。但是如果有两个同样的类型Dog就会报错。