bean的自动装配
- 自动装配是Spring满足bean依赖一种方式
- Spring会在上下文中自动寻找,并自动给bean装配属性
一、搭建环境
创建三个类:
- Cat.java
package com.gaolang.pojo;
public class Cat {
public void shout(){
System.out.println("喵喵~~");
}
}
- Dog.java
package com.gaolang.pojo;
public class Dog {
public void shout(){
System.out.println("汪汪~~");
}
}
- People.java
package com.gaolang.pojo;
public class People {
private String name;
private Cat cat;
private Dog dog;
public String getName() {
return name;
}
public void setName(String name) {
this.name = 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;
}
}
- 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
https://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="dog" class="com.gaolang.pojo.Dog"/>
<bean id="cat" class="com.gaolang.pojo.Cat"/>
<bean id="people" class="com.gaolang.pojo.People">
<property name="name" value="高朗"/>
<property name="cat" ref="cat"/>
<property name="dog" ref="dog"/>
</bean>
</beans>
二、byName自动装配
根据 Property 的 name 自动装配,如果一个 Bean 的 name 和另一个 Bean 中的 Property 的 id 相同,则自动装配这个 Bean 到 Property 中。
autowire=“byName” 自动配置dog和cat
<bean id="dog" class="com.gaolang.pojo.Dog"/>
<bean id="cat" class="com.gaolang.pojo.Cat"/>
<bean id="people" class="com.gaolang.pojo.People" autowire="byName">
<property name="name" value="高朗"/>
</bean>
三、byType自动装配
- 根据 Property 的数据类型(Type)自动装配,如果一个 Bean 的数据类型兼容另一个 Bean 中 Property 的数据类型,则自动装配。
- 会自动在容器上下文中查找,和自己对象属性类型相同的bean !
autowire=“byType” 根据数据类型自动装配,所以前两个bean都可以不用命名。
<bean class="com.gaolang.pojo.Dog"/>
<bean class="com.gaolang.pojo.Cat"/>
<bean id="people" class="com.gaolang.pojo.People" autowire="byType">
<property name="name" value="高朗"/>
</bean>
注意:
- byname的时候,需要保证所有bean的id唯一,并且这个bean需要和自动注入的属性的set方法的值一致
- bytype的时候,需要保证所有bean的class唯一,并且这个bean需要和自动注入的属性的类型一致
四、使用注解自动配置
(1)导入xml约束和<context:annotation-config/>标签
<?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"
xsi:schemaLocation="http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
https://www.springframework.org/schema/context/spring-context.xsd">
<context:annotation-config/>
</beans>
(2)注解@Autowired
- 用于对 Bean 的属性变量、属性的 Set 方法进行标注,配合对应的注解处理器完成 Bean 的自动配置工作。默认按照 Bean 的类型进行装配。
- 使用Autowired 我们可以不用编写Set方法了,前提是你这个自动装配的属性在IOC(Spring)容器中存在,且符合名字byname
- 如果@Autowired自动装配的环境比较复杂,自动装配无法通过一个注解(@Autowired)完成的时候、我们可以使用@Qualifier(value=“xxx”)去配合@Autowired的使用,指定一个唯一的bean对象注入。
- @Autowired(required = false):说明这个对象可以为null,否则不允许为空,required默认为true
- @Autowired最先会通过byType(默认)的方式找,找不到报错,找了多个类型相同的话,继续通过byName的方式查找,如果没有和name相同的bean id的话也会报错,可以加上@Qualifier(value=“xxx”)指定这个bean id
package com.gaolang.pojo;
import org.springframework.beans.factory.annotation.Autowired;
public class People {
// 如果显示定义了Autowired的required属性为false,说明这个对象可以为null,否则不允许为空
@Autowired(required = false)
private String name;
@Autowired
@Qualifier(value="cat22")
private Cat cat;
@Autowired
private Dog dog;
public String getName() {
return name;
}
public Cat getCat() {
return cat;
}
public Dog getDog() {
return dog;
}
}
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"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
https://www.springframework.org/schema/context/spring-context.xsd">
<context:annotation-config/>
<bean id="dog" class="com.gaolang.pojo.Dog"/>
<bean id="cat22" class="com.gaolang.pojo.Cat"/>
<bean id="cat33" class="com.gaolang.pojo.Cat"/>
<bean id="people" class="com.gaolang.pojo.People"/>
</beans>
(3)注解@Resource
和注解@Autowired类似,执行的顺序不同,@Resource默认通过byname的方式实现,找不到才有byType方式,找不到报错,可以使用@Resource(name=“XXX”)来指定一个唯一的bean对象注入。
public class People {
private String name;
@Resource(name = "cat22")
private Cat cat;
@Resource
private Dog dog;
public String getName() {
return name;
}
public Cat getCat() {
return cat;
}
public Dog getDog() {
return dog;
}
}
beans.xml不变同上