7、Bean的自动装配
- 自动装配是spring满足bean依赖的一种方式
- spring会在上下文中自动寻找,并自动给bean装配属性
在spring中,有三种装配的方式
1.在xml中显式的配置
2.在java中显式的配置
3.隐式的自动装配bean【重要】
7.1、测试
环境搭建:一个人有两个宠物
7.2、ByName自动装配
<bean id="cat" class="com.gongyi.pojo.Cat"/>
<bean id="dog" class="com.gongyi.pojo.Dog"/>
<bean id="people" class="com.gongyi.pojo.People" autowire="byName">
<property name="name" value="小工一1呀"/>
</bean>
7.3、ByType自动装配
<bean class="com.gongyi.pojo.Cat"/>
<bean class="com.gongyi.pojo.Dog"/>
<bean id="people" class="com.gongyi.pojo.People" autowire="byType">
<property name="name" value="小工一2呀"/>
</bean>
小结:
- byName的时候,需要保证所有bean的id唯一,并且这个bean需要和自动注入的属性的set方法的值一致
- byType的时候,需要保证所有bean的class唯一,并且这个bean需要和自动注入的属性的类型一致
7.4、使用注解实现自动装配
jdk1.5支持的注解,Spring2.5就支持注解了
官网介绍
The introduction of annotation-based configuration raised the question of whether this approach is “better” than XML
要使用注解须知:
1.导入约束: context约束
拷贝beans,变context
2.配置注解的支持: 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>
直接在属性上使用即可!也可以在set方法上使用
使用Autowired我们可以不用编写set方法了,前提是你这个自动装配的属性在IOC(Spring)容器中存在,且符合名字byName
科普:
@Nullable 字段标记了这个注解,说明这个字段可以为null
public @interface Autowired {
boolean required() default true;
}
测试代码:
public class People {
@Autowired(required = false)
private Cat cat;
private Dog dog;
private String name;
}
如果@Autowired自动装配的环境比较复杂,自动装配无法通过一个注解【@Autowired】完成的时候,我们可以使用@Qualifier(value=“xxx”)去配合@Autowired的使用,指定一个唯一的bean对象注入
public class People {
@Autowired(required = false)
private Cat cat;
@Autowired
@Qualifier(value = "dog1")
private Dog dog;
private String name;
}
public class People {
@Resource(name = "cat1")
private Cat cat;
@Autowired
@Qualifier(value = "dog1")
private Dog dog;
private String name;
}
小结:
@Resource和@Autowired的区别:
- 都是用来自动装配的,都可以放在属性字段上
- @Autowired通过byType的方式实现,而且必须要求这个对象存在【常用】
- @Resource默认通过byName的方式实现,如果找不到名字,则通过byType实现!如果两个都找不到的情况下,就报错【常用】
- 执行顺序不同:@Autowired通过byType的方式实现。@Resource默认通过byName的方式实现
- @Autowired是Spring的注解,@Resource是jdk自带注解
代码show
代码结构图:
代码地址
1.新建模块spring-05-Autowired
2.新建实体类
Cat.java
public class Cat {
public void shout() {
System.out.println("miao!");
}
}
Dog.java
public class Dog {
public void shout() {
System.out.println("wang!");
}
}
People.java
public class People {
@Resource(name = "cat1")
private Cat cat;
@Autowired
private Dog dog;
private String name;
public Cat getCat() {
return cat;
}
public void setCat(Cat cat) {
this.cat = cat;
}
public Dog getDog() {
return dog;
}
@Autowired
@Qualifier(value = "dog1")
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 + '\'' +
'}';
}
}
3.新建资源文件
beans.xml【通过注解注入时的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.gongyi.pojo.Cat"/>
<bean id="cat2" class="com.gongyi.pojo.Cat"/>
<bean class="com.gongyi.pojo.Dog"/>
<bean id="people" class="com.gongyi.pojo.People"/>
</beans>
beans-bak.xml【通过xml注入时的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="cat" class="com.gongyi.pojo.Cat"/>
<bean class="com.gongyi.pojo.Dog"/>
<bean id="people" class="com.gongyi.pojo.People" autowire="byType">
<property name="name" value="小工一2呀"/>
</bean>
</beans>
4.测试类:
public class MyTest {
@Test
public void test1() {
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
People people = context.getBean("people", People.class);
people.getCat().shout();
people.getDog().shout();
}
}
彩蛋
1.有如下logo代表该类被spring托管
点击进去:
2.有如下logo的代表自动注入
点击进去:
3.学习方式很重要,知识就那么点
一般新建一个父工程时,养成一个好习惯,在父工程下新建note.md记录笔记,idea支持markdown语法
|