一 Spring的概述:
1 概念:
- 学习Spring框架之前,我们学习了Hibernate框架(持久层的ORM框架)和Struts2(web层的MVC框架),spring框架叫做EE/SE开发的一站式框架,每一层都为我们提供了解决方案。
2 学习spring框架有啥好处?
- 面向对象的设计比任何技术都重要
- 方便解耦,简化开发。
- 代码测试更加简单
- 方便集成各种优秀的框架
- 声明式事务的支持
二 IOC
1 什么是IOC
IOC,Inversion of Control,控制反转,是面向对象编程的一种设计思想。
2 Spring Framework Runtime
3 实现的代码如下:
面向接口编程的好处:方便程序的扩展(比如集合),多态
好的程序设计满足OCP原则,在尽量不修改程序源代码的基础上进行扩展,
工厂模式:工厂+反射+配置文件实现解耦和
1 将实现类交给Spring管理
1 <?xml version="1.0" encoding="UTF-8"?> 2 <beans xmlns="http://www.springframework.org/schema/beans" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" 4 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> 5 <bean id="UserService" class="com.itheima.demo1.UserServiceImpl"> 6 <property name="name" value="花花" /> 7 </bean> 8 </beans>
2 编写测试类
/** * src目录下的 */ @Test public void demo2(){ ApplicationContext applicationContext=new ClassPathXmlApplicationContext("applicationContext.xml"); UserService userService = (UserService) applicationContext.getBean("UserService"); userService.save(); }
配置文件可以放在任意盘符下
/** * 配置文件放在D盘目录下 */ @Test public void demo3(){ ApplicationContext applicationContext=new FileSystemXmlApplicationContext("D:\\applicationContext.xml"); UserService userService = (UserService) applicationContext.getBean("UserService"); userService.save(); }
4 IOC和DI(面试经常会问到)
IOC:控制反转,将创建对象权交给spring管理
DI:依赖注入,前提必须有IOC的环境,Spring 管理的这个类的时候将类的属性注入进来
面向对象的三种关系
(1)依赖
class A(){}
Class B(){public void xxx(A a){}}我们这时候说B依赖A
(2)继承
(3)聚合
Spring工厂类
ApplicationCotext类的UML类图
四 Bean的相关配置
1 <bean>标签中的id和name
id:使用了约束中的唯一约束
name:没有使用约束中的唯一约束(理论上可以出现重复,但是在实际的开发中不能重复)
2 Bean的作用范围的配置(重点)
scope :Bean的作用范围
singleton :默认的,Spring会采用单例模式创建这个对象。
prototype :多例模式。(Struts2和Spring整合一定会用到)
request :应用在web项目中,Spring创建这个类以后,将这个类存入到request范围中。
session :应用在web项目中,Spring创建这个类以后,将这个类存入到session范围中。
globalsession :应用在web项目中,必须在porlet环境下使用。但是如果没有这种环境,相对于session。
3 属性注入的方式
(1)使用构造方法注入
<!--spring属性注入的方式 --> <!--使用构造方法--> <bean id="car" class="com.itheima.demo3.Car"> <constructor-arg name="name" value="玛莎拉蒂"/> <constructor-arg name="price" value="2000000"/> </bean>
(2)使用set方法注入普通类型
<!--使用set方法注入普通类型--> <bean id="car2" class="com.itheima.demo3.Car2"> <property name="name" value="一汽大众"/> <property name="price" value="200000"/> </bean>
使用set方法注入对象
<!--使用set方法注入对象--> <bean name="employee" class="com.itheima.demo3.Employee"> <property name="name" value="花花"/> <!--ref写对象的id或者name--> <property name="car2" ref="car2"/> </bean>
(3)使用p名称空间的方式(这点IDEA做的就比较好,不用去其他文件去找,直接快速修复)
<bean id="car2" class="com.itheima.demo3.Car2" p:name="奔驰" p:price="500000"/> <bean id="employee" class="com.itheima.demo3.Employee" p:name="大花花" p:car2-ref="car2"> </bean>
(4)使用SPEL表达式注入
<!--改用spel表达式注入--> <bean id="car2" class="com.itheima.demo3.Car2" > <property name="name" value="#{carInfo.name}"/> <property name="price" value="#{carInfo.jisuanprice()}"/> </bean> <bean id="employee" class="com.itheima.demo3.Employee"> <property name="name" value="#{'大花'}"/> <property name="car2" value="#{car2}" /><!--用spel不用ref,都用value--> </bean> <import resource="applicationContext2.xml"/>
扩展:集合类型属性的注入
1 <?xml version="1.0" encoding="UTF-8"?> 2 <beans xmlns="http://www.springframework.org/schema/beans" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" 4 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> 5 <!--注入数组--> 6 <bean id="Collection" class="com.itheima.demo4.Collection"> 7 <property name="arrs" > 8 <list> 9 <value>杨幂</value> 10 <value>杨紫</value> 11 <value>花花</value> 12 <value>李四</value> 13 </list> 14 </property> 15 <!--注入list集合--> 16 <property name="list" > 17 18 <list> 19 <value>张三</value> 20 <value>李四</value> 21 <value>王五</value> 22 </list> 23 </property> 24 <!--注入set集合--> 25 <property name="set"> 26 27 <set> 28 <value>aaa</value> 29 <value>bbb</value> 30 <value>xxx</value> 31 </set> 32 </property> 33 <!--注入Map集合--> 34 <property name="map"> 35 36 <map> 37 <entry key="aa" value="11"/> 38 <entry key="bb" value="22"/> 39 <entry key="cc" value="33"/> 40 </map> 41 </property> 42 </bean> 43 </beans>
养成良好的代码注释习惯,方便后期的查看。
往期内容: