Spring Bean配置 Spring Bean怎样实现自动配置代码实例
CodeHuba 人气:0想了解Spring Bean怎样实现自动配置代码实例的相关内容吗,CodeHuba在本文为您仔细讲解Spring Bean配置的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Spring,Bean,自动配置,下面大家一起来学习吧。
自动装配是Spring满足Bean依赖的一种方式;
Spring会在context中自动寻找,并自动给bean装配属性;
在Spring中有三种装配的方式:
- 在xml中显式配置
- 在java中显式配置
- 隐式的自动装配bean(重要)
测试
环境搭建:一个人有两个宠物!
byName自动装配
<!-- byName:自动在容器上下文查找,和自己对象set方法后面的值对应的beanid; --> <bean id="people" class="com.kuang.pojo.People" autowire="byName"> <property name="name" value="huba"/> </bean>
byType自动装配
<!-- byName:自动在容器上下文查找,和自己对象set方法后面的值对应的beanid; byType:自动在容器上下文查找,和自己对象属性类型相同的bean --> <bean id="people" class="com.kuang.pojo.People" autowire="byName"> <property name="name" value="huba"/> </bean>
小结:
- byname,需要保证所有bean的id唯一,并且这个bean需要和自动注入的属性的set方法的值一致;
- byType,需要保证所有bean的class唯一,并且这个bean需要和自动注入的属性的类型一致;
使用注解实现自动装配
jdk1.5支持的注解,spring2.5就支持注解了!
要使用注解须知:
导入约束:context约束
配置注解的支持: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>
@Autowired
直接在属性上使用即可! 也可以在set方法上使用!
使用Autowired我们可以不用编写Set方法,前提是自动装配的属性在IOC容器中存在,且符合名字byname!
补充:
@Nullable
//字段标记了这个注解,说明这个字段可以为null
public @interface Autowired {
boolean required() default true;
}@Autowired(required = false)
//如果显式定义了require为false,那么这个属性可以为null,否则不能为空
测试代码:
public class People { @Autowired private Cat cat; @Autowired private Dog dog; private String name; }
如果@Autowired自动装配的环境比较复杂,自动装配无法通过一个注解完成时,我们可以使用@Qualifier(value="xxx")去配合使用,xxx是唯一的bean对象id。
public class People { @Autowired private Cat cat; @Autowired //可以显式的定义装配的对象 @Qualifier(value = "dog") private Dog dog; private String name; }
@Resource注解
public class People { @Resource(name="cat") private Cat cat; @Autowired //可以显式的定义装配的对象 @Qualifier(value = "dog") private Dog dog; private String name; }
小结:
@Resource和@Autowired的区别:
- 都是用来自动装配的,都可以放在属性字段上;
- @Autowired先byType再byName的方式(常用)
- @Resource先byName再byType的方式(常用)
加载全部内容