一、概述
DI(Dependency Injection)
和IoC是一个东西,只是角度不同。
Spring在控制反转的时候,自动把调用者需要的对象实例注入给调用者,这个就是依赖注入。
二、实现方式
1、setter注入
IoC容器使用setter方法注入实例,无参构造函数或者无参静态工程方法实例化bean后,调用bean的setter方法完成注入。
适用可选依赖项。
public class UserServiceImpl implents UserService{
private UserDao userDao;
@Autowire
public setUserDao(UserDao userDao){
this.userDao = userDao;
}
}
2、构造方法注入
IoC容器使用构造方法注入实例,调用带参构造方法完成注入,一个参数表示一个依赖。
适用必需依赖项,能防止它null,还能保持不可变。
public class UserServiceImpl implents UserService{
private UserDao userDao;
@Autowire
public UserServiceImpl(UserDao userDao){
this.userDao = userDao;
}
}
3、字段注入
(1)示例
public class UserServiceImpl implents UserService{
@Autowire
private UserDao userDao;
}
(2)缺点
略。缺点比较多,不建议使用。
Bean装配
1、基于XML
2、基于Annotation
3、自动装配
<bean>有个属性叫autowire,值有5个。
属性值 | 说明 |
---|---|
byName | 根据 Property 的 name 自动装配,如果一个 Bean 的 name 和另一个 Bean 中的 Property 的 name 相同,则自动装配这个 Bean 到 Property 中。 |
byType | 根据 Property 的数据类型(Type)自动装配,如果一个 Bean 的数据类型兼容另一个 Bean 中 Property 的数据类型,则自动装配。 |
constructor | 根据构造方法的参数的数据类型,进行 byType 模式的自动装配。 |
autodetect | 如果发现默认的构造方法,则用 constructor 模式,否则用 byType 模式。 |
no | 默认值,不使用自动装配,Bean 依赖必须通过 ref 元素定义。 |
看个例子:
<?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:aop="http://www.springframework.org/schema/aop"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<bean id="personDao" class="com.mengma.annotation.PersonDaoImpl" />
<bean id="personService" class="com.mengma.annotation.PersonServiceImpl"
autowire="byName" />
<bean id="personAction" class="com.mengma.annotation.PersonAction"
autowire="byName" />
</beans>
默认情况下,配置文件中需要通过 ref 装配 Bean,但设置了 autowire=“byName”,Spring 会在配置文件中自动寻找与属性名字 personDao 相同的 ,找到后,通过调用 setPersonDao(PersonDao personDao)方法将 id 为 personDao 的 Bean 注入 id 为 personService 的 Bean 中,这时就不需要通过 ref 装配了。