依赖注入: Dependency Injection
,它是 spring 框架核心 IOC 的具体实现,具体点就是依赖关系的维护称之为依赖注入
我们的程序在编写时, 通过控制反转, 把对象的创建交给了 spring,但是代码中不可能出现没有依赖的情况。
IOC 解耦只是降低他们的依赖关系,但不会消除。 例如:我们的业务层仍会调用持久层的方法。
那这种业务层和持久层的依赖关系, 在使用 spring 之后, 就让 spring 来维护了,简单的说,就是坐等框架把持久层对象传入业务层,而不用我们自己去获取
依赖注入的数据有三类:
* 基本类型和String
* 其他bean类型(在配置文件中或者注解配置过的bean)
* 复杂类型/集合类型
注入的方式:有三种
* 第一种:使用构造函数提供
* 第二种:使用set方法提供
* 第三种:使用注解提供(明天的内容)
顾名思义,就是使用类中的构造函数,给成员变量赋值。注意,赋值的操作不是我们自己做的,而是通过配置的方式,让 spring 框架来为我们注入。
public class AccountServiceImpl implements AccountService {
private String name;
private Integer age;
private Date birthday;
public AccountServiceImpl(String name, Integer age, Date birthday) {
this.name = name;
this.age = age;
this.birthday = birthday;
}
@Override
public void saveAccount() {
System.out.println(name + "," + age + "," + birthday);
}
}
使用的标签:constructor-arg
标签出现的位置:bean标签的内部
标签中的属性:
index:用于指定要注入的数据给构造函数中指定索引位置的参数赋值,索引的位置是从0开始
type:用于指定要注入的数据的数据类型,该数据类型也是构造函数中某个或某些参数的类型
name:指定参数在构造函数中的名称 用这个找给谁赋值(最常用的方式)
=======上面三个都是找给谁赋值,下面两个指的是赋什么值的==============
value:它能赋的值是基本数据类型和 String 类型
ref:它能赋的值是其他 bean 类型,也就是说,必须得是在配置文件中配置过的 bean
优势:在获取bean对象时,注入数据是必须的操作,否则对象无法创建成功。
弊端:改变了bean对象的实例化方式,使我们在创建对象时,如果用不到这些数据,也必须提供。
<bean id="accountService" class="mybatis.service.impl.AccountServiceImpl">
<constructor-arg name="name" value="Java"></constructor-arg>
<constructor-arg name="age" value="18"></constructor-arg>
<constructor-arg name="birthday" ref="now"></constructor-arg>
</bean>
<!--配置一个日期对象-->
<bean id="now" class="java.util.Date"></bean>
顾名思义,就是在类中提供需要注入成员的 set 方法
涉及的标签:property
出现的位置:bean标签的内部
标签的属性:
* name:用于指定注入时所调用的set方法名称
* value:用于提供基本类型和String类型的数据
* ref:用于指定其他的bean类型数据。它指的就是在spring的IOC核心容器中出现过的bean对象
优势:创建对象时没有明确的限制,可以直接使用默认构造函数
弊端:如果有某个成员必须有值,则获取对象是有可能set方法没有执行。
提供成员的set方法:
@Data
public class AccountServiceImpl implements AccountService {
private String name;
private Integer age;
private Date birthday;
@Override
public void saveAccount() {
System.out.println(name + "," + age + "," + birthday);
}
}
<bean id="accountService" class="mybatis.service.impl.AccountServiceImpl">
<property name="name" value="test"></property>
<property name="age" value="19"></property>
<property name="birthday" value="now"></property>
</bean>
<!--配置一个日期对象-->
<bean id="now" class="java.util.Date"></bean>
设置一个空值:
<property name="birthday">
<null/>
</property>
如果设置的值中包含特殊符号,如<>
,解决办法:
1.将特殊符号进行转义,如<,>
2.把待特殊符号内容写到CDATA中:<now>
<property name="birthday" value=<![CDATA[<now>]]>></property>
顾名思义,就是给类中的集合成员传值,它用的也是 set 方法注入的方式,只不过变量的数据类型都是集合。我们这里介绍注入数组, List,Set,Map,Properties
复杂类型的注入/集合类型的注入
* 用于给List结构集合注入的标签:list array set
* 用于个Map结构集合注入的标签: map props
* 结构相同,标签可以互换
@Data
public class AccountServiceImpl implements AccountService {
private String[] myStr;
private List<String> myList;
private Set<String> mySet;
private Map<String,String> myMap;
private Properties myProps;
@Override
public void saveAccount() {
System.out.println(Arrays.toString(myStr));
System.out.println(myList);
System.out.println(mySet);
System.out.println(myMap);
System.out.println(myProps);
}
}
<bean id="accountService" class="mybatis.service.impl.AccountServiceImpl">
<property name="myStr">
<list>
<value>AAA</value>
<value>BBB</value>
</list>
</property>
<property name="myList">
<list>
<value>AAA</value>
<value>BBB</value>
</list>
</property>
<property name="mySet">
<list>
<value>AAA</value>
<value>BBB</value>
</list>
</property>
<property name="myMap">
<props>
<prop key="testA">AAA</prop>
<prop key="testB">BBB</prop>
</props>
</property>
<property name="myProps">
<map>
<entry key="testA" value="AAA"></entry>
<entry key="testB" value="BBB"></entry>
</map>
</property>
</bean>
</beans>
如果是在集合里面设置对象类型
<!--创建多个course对象-->
<bean id="course1" class="com.atguigu.spring5.collectiontype.Course">
<property name="cname" value="Spring5框架"></property>
</bean>
<bean id="course2" class="com.atguigu.spring5.collectiontype.Course">
<property name="cname" value="MyBatis框架"></property>
</bean>
<!--注入list集合类型,值是对象-->
<property name="courseList">
<list>
<ref bean="course1"></ref>
<ref bean="course2"></ref>
</list>
</property>
使用util标签完成list集合注入提取
首先需要修改配置文件
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">
然后具体使用
<!--1 提取list集合类型属性注入-->
<util:list id="bookList">
<value>易筋经</value>
<value>九阴真经</value>
<value>九阳神功</value>
</util:list>
<!--2 提取list集合类型属性注入使用-->
<bean id="book" class="com.atguigu.spring5.collectiontype.Book">
<property name="list" ref="bookList"></property>
</bean>