一、IOC、DI理解
IOC(控制反转):和23设计模式一样是一种思想,就是在程序中不再通过new的方式创建对象了。
DI(依赖注入):依赖指的是a对象和b对象的关系,注入是一种手段,通过这种手段让a对象和b对象产生关系,而注入包括两种常见的方式
- set注入
- 构造方式注入
IOC 就是一种反转控制的思想, 而 DI 是对 IOC 的一种具体实现,在spring中是一件事(把对对象的创建、管理、属性赋值等使用交给spring容器)
二、Spring 的 IOC 容器
Spring 的 IOC 容器就是 IOC 思想的一个落地的产品实现。IOC 容器中管理的组件也叫做 bean。在创建 bean 之前,首先需要创建 IOC 容器。Spring 提供了 IOC 容器的两种实现方式:
1、BeanFactory接口
这是 IOC 容器的基本实现,是 Spring 内部使用的接口。面向 Spring 本身,不提供给开发人员使用
2、ApplicationContext
BeanFactory 的子接口,提供了更多高级特性。面向 Spring 的使用者,几乎所有场合都使用 ApplicationContext 而不是底层的 BeanFactory。
三、基于xml方式依赖注入
1、bean的声明和使用
applicationContext.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 http://www.springframework.org/schema/beans/spring-beans.xsd"> <!--声明对象 id:唯一值 class:设置bean所对应类型的全类名 spring根据id class创建对象,把对象放入到spring的一个map对象map(id,对象) --> <bean id="helloWorld" class="org.example.demo1.service.imp.helloWorldImpl"/> <!--也可以创建非自定义对象--> <bean id="myDate" class="java.util.Date"/> </beans>
使用方式1:根据id获取bean
测试
@Test public void test() { /** * 1、从classpath加载配置文件,这里直接在resource目录下,可以自定义目录 * 2、容器对象ApplicationContext是一个接口,通过实现类ClassPathXmlApplicationContext加载文件, * 获取其他java对象 * 3、ApplicationContext 容器,会在容器对象初始化时,读取配置文件将其中的所有对象一次性全部装配好放在map中 * 4、spring默认使用的是无参构造方法创建对象 */ String bean = "beans.xml"; ApplicationContext ctx = new ClassPathXmlApplicationContext(bean); StudentService service= (StudentService)ctx.getBean("helloWorld"); service.sayHello(); }
Spring 底层默认通过反射技术调用组件类的无参构造器来创建组件对象,这一点需要注意。如果在需要 无参构造器时,没有无参构造器,则会抛出下面的异常:
Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.bean.HelloWorld]: No default constructor found; nested exception is java.lang.NoSuchMethodException
使用方式2:根据类型获取
由于 id 属性指定了 bean 的唯一标识,所以根据 bean 标签的 id 属性可以精确获取到一个组件对象
@Test public void testHelloWorld(){ ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml"); HelloWorld bean = ac.getBean(HelloWorld.class); bean.sayHello(); }
使用方式3:根据id和类型
@Test public void testHelloWorld(){ ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml"); HelloWorld bean = ac.getBean("helloworld", HelloWorld.class); bean.sayHello(); }
当根据类型获取bean时,要求IOC容器中指定类型的bean有且只能有一个 当IOC容器中一共配置了两个,根据类型获取时会抛出异常:NoUniqueBeanDefinitionException
如果一个接口有多个实现类,这些实现类都配置了 bean,根据接口类型是不可以获取 bean 的
2、bean的注入
2.1、依赖注入之setter注入
<bean id="studentOne" class="com.demo.bean.Student"> <!-- property标签:通过组件类的setXxx()方法给组件对象设置属性 --> <!-- name属性:指定属性名(这个属性名是getXxx()、setXxx()方法定义的,和成员变量无关) --> <!-- value属性:指定属性值 --> <property name="id" value="1001"></property> <property name="name" value="张三"></property> <property name="age" value="23"></property> <property name="sex" value="男"></property> </bean>
测试
@Test public void testDIBySet(){ ApplicationContext ac = new ClassPathXmlApplicationContext("spring-di.xml"); Student studentOne = ac.getBean("studentOne", Student.class); System.out.println(studentOne); }
2.2、依赖注入之构造器注入
在Student类中添加有参构造
public Student(Integer id, String name, Integer age, String sex) { this.id = id; this.name = name; this.age = age; this.sex = sex; }
配置bean
<bean id="studentTwo" class="com.demo.spring.bean.Student"> <constructor-arg value="1002"></constructor-arg> <constructor-arg value="李四"></constructor-arg> <constructor-arg value="33"></constructor-arg> <constructor-arg value="女"></constructor-arg> </bean>
constructor-arg标签还有两个属性可以进一步描述构造器参数:
index属性:指定参数所在位置的索引(从0开始)
name属性:指定参数名
@Test public void testDIBySet(){ ApplicationContext ac = new ClassPathXmlApplicationContext("spring-di.xml"); Student studentOne = ac.getBean("studentTwo", Student.class); System.out.println(studentOne); }
2.3、特殊值注入处理
①字面量赋值
什么是字面量?
int a = 10; 声明一个变量a,初始化为10,此时a就不代表字母a了,而是作为一个变量的名字。当我们引用a 的时候,我们实际上拿到的值是10。 而如果a是带引号的:'a',那么它现在不是一个变量,它就是代表a这个字母本身,这就是字面 量。所以字面量没有引申含义,就是我们看到的这个数据本身。
<!-- 使用value属性给bean的属性赋值时,Spring会把value属性的值看做字面量 --> <property name="name" value="张三"/>
②null值
<property name="name"> <null /> </property>
但是下面为name所赋的值是字符串null
<property name="name" value="null"></property>
③xml实体
<!-- 小于号在XML文档中用来定义标签的开始,不能随便使用 --> <!-- 解决方案一:使用XML实体来代替 --> <property name="expression" value="a < b"/>
④CDATA节
<property name="expression"> <!-- 解决方案二:使用CDATA节 --> <!-- CDATA中的C代表Character,是文本、字符的含义,CDATA就表示纯文本数据 --> <!-- XML解析器看到CDATA节就知道这里是纯文本,就不会当作XML标签或属性来解析 --> <!-- 所以CDATA节中写什么符号都随意 --> <value><![CDATA[a < b]]></value> </property>
2.4、为类类型属性赋值
student有一个班级属性
private Clazz clazz;
<bean id="clazzOne" class="com.demo.spring.bean.Clazz"> <property name="clazzId" value="1111"></property> <property name="clazzName" value="一班"></property> </bean> <bean id="studentFour" class="com.demo.spring.bean.Student"> <property name="id" value="1004"></property> <property name="name" value="赵六"></property> <property name="age" value="26"></property> <property name="sex" value="女"></property> <!-- ref属性:引用IOC容器中某个bean的id,将所对应的bean为属性赋值 --> <property name="clazz" ref="clazzOne"></property> </bean>
方式二:内部bean
<bean id="studentFour" class="com.demo.spring.bean.Student"> <property name="id" value="1004"></property> <property name="name" value="赵六"></property> <property name="age" value="26"></property> <property name="sex" value="女"></property> <property name="clazz"> <!-- 在一个bean中再声明一个bean就是内部bean --> <!-- 内部bean只能用于给属性赋值,不能在外部通过IOC容器获取,因此可以省略id属性 --> <bean id="clazzInner" class="com.demo.spring.bean.Clazz"> <property name="clazzId" value="2222"></property> <property name="clazzName" value="二班"></property> </bean> </property> </bean>
方式三:级联属性赋值
<bean id="studentFour" class="com.demo.spring.bean.Student"> <property name="id" value="1004"></property> <property name="name" value="赵六"></property> <property name="age" value="26"></property> <property name="sex" value="女"></property> <!-- 一定先引用某个bean为属性赋值,才可以使用级联方式更新属性 --> <property name="clazz" ref="clazzOne"></property> <property name="clazz.clazzId" value="3333"></property> <property name="clazz.clazzName" value="三班"></property> </bean>
2.5、为数组类型属性赋值
student增加private String[] hobbies;属性
<bean id="studentFour" class="com.demo.spring.bean.Student"> <property name="id" value="1004"></property> <property name="name" value="赵六"></property> <property name="age" value="26"></property> <property name="sex" value="女"></property> <!-- ref属性:引用IOC容器中某个bean的id,将所对应的bean为属性赋值 --> <property name="clazz" ref="clazzOne"></property> <property name="hobbies"> <array> <value>111</value> <value>222</value> <value>333</value> </array> </property> </bean>
2.6、为集合类型属性赋值
①为List集合类型属性赋值
student增加集合属性 private List students;
bean配置
<bean id="clazzTwo" class="com.demo.spring.bean.Clazz"> <property name="clazzId" value="4444"></property> <property name="clazzName" value="Javaee0222"></property> <property name="students"> <list> <ref bean="studentOne"></ref> <ref bean="studentTwo"></ref> <ref bean="studentThree"></ref> </list> </property> </bean>
若为Set集合类型属性赋值,只需要将其中的list标签改为set标签即可
②为Map集合类型属性赋值
student有map集合private Map<String, Teacher> teacherMap;
bean配置
<bean id="teacherOne" class="com.demo.spring.bean.Teacher"> <property name="teacherId" value="10010"></property> <property name="teacherName" value="大宝"></property> </bean> <bean id="teacherTwo" class="com.demo.spring.bean.Teacher"> <property name="teacherId" value="10086"></property> <property name="teacherName" value="二宝"></property> </bean> <bean id="studentFour" class="com.demo.spring.bean.Student"> <property name="id" value="1004"></property> <property name="name" value="赵六"></property> <property name="age" value="26"></property> <property name="sex" value="女"></property> <!-- ref属性:引用IOC容器中某个bean的id,将所对应的bean为属性赋值 --> <property name="clazz" ref="clazzOne"></property> <property name="hobbies"> <array> <value>抽烟</value> <value>喝酒</value> <value>烫头</value> </array> </property> <property name="teacherMap"> <map> <entry> <key> <value>10010</value> </key> <ref bean="teacherOne"></ref> </entry> <entry> <key> <value>10086</value> </key> <ref bean="teacherTwo"></ref> </entry> </map> </property> </bean>
③引用集合类型的bean
<!--list集合类型的bean--> <util:list id="students"> <ref bean="studentOne"></ref> <ref bean="studentTwo"></ref> <ref bean="studentThree"></ref> </util:list> <!--map集合类型的bean--> <util:map id="teacherMap"> <entry> <key> <value>10010</value> </key> <ref bean="teacherOne"></ref> </entry> <entry> <key> <value>10086</value> </key> <ref bean="teacherTwo"></ref> </entry> </util:map> <bean id="clazzTwo" class="com.demo.spring.bean.Clazz"> <property name="clazzId" value="4444"></property> <property name="clazzName" value="Javaee0222"></property> <property name="students" ref="students"></property> </bean> <bean id="studentFour" class="com.demo.spring.bean.Student"> <property name="id" value="1004"></property> <property name="name" value="赵六"></property> <property name="age" value="26"></property> <property name="sex" value="女"></property> <!-- ref属性:引用IOC容器中某个bean的id,将所对应的bean为属性赋值 --> <property name="clazz" ref="clazzOne"></property> <property name="hobbies"> <array> <value>抽烟</value> <value>喝酒</value> <value>烫头</value> </array> </property> <property name="teacherMap" ref="teacherMap"></property> </bean>
使用util:list、util:map标签必须引入相应的命名空间,可以通过idea的提示功能选择
2.7、p命名空间
引入p命名空间后,可以通过以下方式为bean的各个属性赋值
<bean id="studentSix" class="com.demo.spring.bean.Student" p:id="1006" p:name="小明" p:clazz-ref="clazzOne" p:teacherMapref="teacherMap"></bean>
2.8、引入外部属性文件
<!-- 引入外部属性文件 --> <context:property-placeholder location="classpath:jdbc.properties"/> <!--bean --> <bean id="druidDataSource" class="com.alibaba.druid.pool.DruidDataSource"> <property name="url" value="${jdbc.url}"/> <property name="driverClassName" value="${jdbc.driver}"/> <property name="username" value="${jdbc.user}"/> <property name="password" value="${jdbc.password}"/> </bean>
@Test public void testDataSource() throws SQLException { ApplicationContext ac = new ClassPathXmlApplicationContext("springdatasource.xml"); DataSource dataSource = ac.getBean(DataSource.class); Connection connection = dataSource.getConnection(); System.out.println(connection); }
2.9、bean的作用域
<!-- scope属性:取值singleton(默认值),bean在IOC容器中只有一个实例,IOC容器初始化时创建 对象 --> <!-- scope属性:取值prototype,bean在IOC容器中可以有多个实例,getBean()时创建对象 --> <bean class="com.demo.bean.User" scope="prototype"></bean>
2.10、bean的生命周期
bean对象创建(调用无参构造器)
给bean对象设置属性
bean对象初始化之前操作(由bean的后置处理器负责)
bean对象初始化(需在配置bean时指定初始化方法)
bean对象初始化之后操作(由bean的后置处理器负责)
bean对象就绪可以使用
bean对象销毁(需在配置bean时指定销毁方法)
IOC容器关闭
public class User { private Integer id; private String username; private String password; private Integer age; public User() { System.out.println("生命周期:1、创建对象"); } public User(Integer id, String username, String password, Integer age) { this.id = id; this.username = username; this.password = password; this.age = age; } public Integer getId() { return id; } public void setId(Integer id) { System.out.println("生命周期:2、依赖注入"); this.id = id; } public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public Integer getAge() { return age; } public void setAge(Integer age) { this.age = age; } public void initMethod(){ System.out.println("生命周期:3、初始化"); } public void destroyMethod(){ System.out.println("生命周期:5、销毁"); } @Override public String toString() { return "User{" + "id=" + id + ", username='" + username + '\'' + ", password='" + password + '\'' + ", age=" + age + '}'; } }
配置bean
<!-- 使用init-method属性指定初始化方法 --> <!-- 使用destroy-method属性指定销毁方法 --> <bean class="com.demo.bean.User" scope="prototype" init-method="initMethod" destroy-method="destroyMethod"> <property name="id" value="1001"></property> <property name="username" value="admin"></property> <property name="password" value="123456"></property> <property name="age" value="23"></property> </bean>
测试
@Test public void testLife(){ ClassPathXmlApplicationContext ac = new ClassPathXmlApplicationContext("spring-lifecycle.xml"); User bean = ac.getBean(User.class); System.out.println("生命周期:4、通过IOC容器获取bean并使用"); ac.close(); }
bean的后置处理器
bean的后置处理器会在生命周期的初始化前后添加额外的操作,需要实现BeanPostProcessor接口, 且配置到IOC容器中,需要注意的是,bean后置处理器不是单独针对某一个bean生效,而是针对IOC容 器中所有bean都会执行 创建bean的后置处理器:
public class MyBeanProcessor implements BeanPostProcessor { @Override public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException { System.out.println("☆☆☆" + beanName + " = " + bean); return bean; } @Override public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException { System.out.println("★★★" + beanName + " = " + bean); return bean; } }
在IOC容器中配置后置处理器:
<!-- bean的后置处理器要放入IOC容器才能生效 --> <bean id="myBeanProcessor" class="com.demo.spring.process.MyBeanProcessor"/>
2.11、FactoryBean
FactoryBean是Spring提供的一种整合第三方框架的常用机制。和普通的bean不同,配置一个 FactoryBean类型的bean,在获取bean的时候得到的并不是class属性中配置的这个类的对象,而是 getObject()方法的返回值。通过这种机制,Spring可以帮我们把复杂组件创建的详细过程和繁琐细节都 屏蔽起来,只把最简洁的使用界面展示给我们。 我们整合Mybatis时,Spring就是通过FactoryBean机制来帮我们创建SqlSessionFactory对象的。
创建类UserFactoryBean
public class UserFactoryBean implements FactoryBean<User> { @Override public User getObject() throws Exception { return new User(); } @Override public Class<?> getObjectType() { return User.class; } }
配置bean
<bean id="user" class="com.demo.bean.UserFactoryBean"></bean>
测试
@Test public void testUserFactoryBean(){ //获取IOC容器 ApplicationContext ac = new ClassPathXmlApplicationContext("springfactorybean.xml"); User user = (User) ac.getBean("user"); System.out.println(user); }
2.12、基于xml的自动装配
根据指定的策略,在IOC容器中匹配某一个bean,自动为指定的bean中所依赖的类类型或接口类 型属性赋值
service接口
public interface UserService { void saveUser(); }
service实现类
public class UserServiceImpl implements UserService { private UserDao userDao; public void setUserDao(UserDao userDao) { } @Override public void saveUser() { userDao.saveUser(); } }
dao接口
public interface UserDao { void saveUser(); }
dao实现类
public class UserDaoImpl implements UserDao { @Override public void saveUser() { System.out.println("保存成功"); } }
使用bean标签的autowire
属性设置自动装配效果
自动装配方式:byType
byType:根据类型匹配IOC容器中的某个兼容类型的bean,为属性自动赋值 若在IOC中,没有任何一个兼容类型的bean能够为属性赋值,则该属性不装配,即值为默认值 null 若在IOC中,有多个兼容类型的bean能够为属性赋值,则抛出异常 NoUniqueBeanDefinitionException
<bean id="userService" class="com.demo.autowire.xml.service.impl.UserServiceImpl" autowire="byType"> </bean> <bean id="userDao" class="com.demo.autowire.xml.dao.impl.UserDaoImpl"></bean>
自动装配方式:byName
byName:将自动装配的属性的属性名,作为bean的id在IOC容器中匹配相对应的bean进行赋值
<bean id="userService" class="com.demo.autowire.xml.service.impl.UserServiceImpl" autowire="byName"> </bean> <bean id="userServiceImpl" class="com.demo.autowire.xml.service.impl.UserServiceImpl" autowire="byName"> </bean> <bean id="userDao" class="com.demo.autowire.xml.dao.impl.UserDaoImpl"></bean> <bean id="userDaoImpl" class="com.demo.autowire.xml.dao.impl.UserDaoImpl"> </bean>
测试
@Test public void testAutoWireByXML(){ ApplicationContext ac = new ClassPathXmlApplicationContext("autowirexml.xml"); UserService userService= ac.getBean(userService.class); userService.saveUser(); }
四、主配置文件中引入子配置文件
在实际Spring的开发中,service单独配置到⼀个⽂件中,dao单独配置到⼀个⽂件中,然后在核⼼配置⽂ 通过import引⼊
<?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 htt p://www.springframework.org/schema/beans/spring-beans.xsd http://www.sprin gframework.org/schema/context https://www.springframework.org/schema/conte xt/spring-context.xsd"> <!--组件扫描--> <context:component-scan base-package="com.demo.dao"/> </beans>
主配置文件spring.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" xmln s:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation="http://www.springframework.org/schema/beans htt p://www.springframework.org/schema/beans/spring-beans.xsd http://www.sprin gframework.org/schema/context https://www.springframework.org/schema/conte xt/spring-context.xsd http://www.springframework.org/schema/tx http://www. springframework.org/schema/tx/spring-tx.xsd"> <!--引⼊其他的spring配置⽂件--> <import resource="dao.xml"/> </beans>