Bean的自动装配
自动装配是Spring满足Bean依赖的一种方式
Spring会在上下文中自动寻找,并且给Bean装配属性
在Spring中有三种装配方式
- 在XML中显示配置
- 在Java中显示配置
- 隐式的自动装配
关于隐式的自动装配
<bean id="cat" class="com.jiwei.pojo.Cat"/>
<bean id="dog" class="com.jiwei.pojo.Dog"/>
<bean id="people" class="com.jiwei.pojo.People">
<property name="name" value="jack"/>
<property name="cat" ref="cat"/>
<property name="dog" ref="dog"/>
</bean>
<!--在传统的配置xml中,需要额外写ref的配置,但是交给autowire则不需要-->
如下所示
<?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.jiwei.pojo.Dog"/>
<bean id="cat" class="com.jiwei.pojo.Cat"/>
<bean id="people" class="com.jiwei.pojo.People" autowire="byType"/>
</beans>
无需额外写多余的ref
方式1:通过ByName自动装配:此方法会在容器上下文中寻找和自己set方法相同名字的Bean id
<bean id="people" class="com.jiwei.pojo.People" autowire="byName"/>
方式2:通过ByType自动装配:会在容器的上下文查找和自己对象属性相同类型的bean
<bean id="people" class="com.jiwei.pojo.People" autowire="byType"/>
@Autowired装配
首先导入配置
接着导入注解的支持
<?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>
最后在属性上或者在set方法上添加@AutoWired()注解
@Autowired()有一个required = true/false 选项
表示可以为空?(后续补充)
@Qualifier("dog1")
如果@Autowired自动装配的环境比较复杂,自动装配无法通过一个注解@Autowired完成的时候,我们可以使用@Qualifier(value = “xxx”)去配置@Autowired的使用,指定一个唯一的bean对象注入!
例如在这样的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="cat1" class="com.jiwei.pojo.Cat"/>
<bean id="cat2" class="com.jiwei.pojo.Cat"/>
<bean id="dog1" class="com.jiwei.pojo.Dog"/>
<bean id="dog2" class="com.jiwei.pojo.Dog"/>
<bean id="people" class="com.jiwei.pojo.People"/>
</beans>
所以可以在@Autowired()后加上@Qualifier()来唯一标识
package com.jiwei.pojo;
import lombok.Data;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
@Data
public class People {
@Autowired
@Qualifier("dog1")
private Dog dog;
@Autowired(required = false)
@Qualifier("cat2")
private Cat cat;
private String name;
}
tips
@Nullable 字段标记了了这个注解,说明这个字段可以为null;
@Resources 和 @Autowired 的区别
- 都是用来自动装配的,都可以放在属性的字段上
- @Autowired通过byType的方式实现,而且必须要求这个对象存在!
- @Resource默认通过byName的方式实现,如果找不到名字,则通过byType实现!如果两个都找不到的情况下,就报错!