Spring
Spring:使现有的技术更容易使用,本身就是一个大杂烩,整合了现有的技术框架
文章目录
1、Spring 简介
Spring:春天(软件行业的春天)
- Rod Johnson,Spring Framework 创始人,著名作者,他是悉尼大学博士,音乐专业。
1.1 Spring 发展史
- 2002年,首次推出了 Spring 框架的雏形:interface21 框架
- 2004年3月24日,以 interface21 框架为基础,重新设计并不断丰富其内涵,发布了 Spring 1.0 正式版
1.2 SSH & SSM
- SSH:Struct2 + Spring + Hibernate
- SSM:SpringMVC + Spring + Mybatis
1.3 Spring 下载
官网:https://spring.io/projects/spring-framework#overview
官方下载地址:http://repo.spring.io/release/org/springframework/spring
GitHub:https://github.com/spring-projects/spring-framework/tree/main
<!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.3.10</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework/spring-jdbc -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>5.3.10</version>
</dependency>
1.4 Spring 优点(重要)
- Spring 是一个开源的免费的框架(容器)
- Spring 是一个轻量级的、非入侵式的框架
- 控制反转(IOC)
- 面向切面编程(AOP)
- 支持事务的处理,对框架整合的支持
总结为一句话:
- Spring 就是一个轻量级的控制反转(IOC)和面向切面编程(AOP)的框架
1.5 Spring 弊端
发展太久之后,违背了原来的理念。配置十分繁琐(配置地狱)
1.6 Spring 组成
1.7 拓展
在 Spring 的官网有这个介绍:
- 现代化的 Java 开发,就是基于 Spring 的开发
- Spring Boot
- 一个快速开发的脚手架
- 基于 Spring Boot 可以快速的开发单个微服务
- 约定大于配置
- Spring Cloud
- Spring Cloud 是基于 Spring Boot 实现的
1.8 为什么学习 Spring?
- 因为大多数公司都在使用 Spring Boot 进行快速开发,学习 Spring Boot 的前提,需要完全掌握 Spring 及SpringMVC(承上启下的作用)
2、IOC 理论推导
UserDao 接口 —> UserDaoImpl 实体类 —> UserService 业务接口 —> UserServiceImpl 业务实现类
-
在以前的业务中,用户的需求可能会影响我们原来的代码,我们需要根据用户的需求去修改原代码。如果这个程序的代码量特别大,修改一次的成本代价非常昂贵。
-
所以,我们使用一个 set 接口实现控制反转(革命性变化)
- 以前程序是主动创建对象,控制权在程序手中
- 使用了 set 注入之后,程序不再具有主动性,而是变成了被动的接受了对象
private UserDao userDao; // 利用 set 进行东岱实现值的注入 public void setUserDao(UserDao userDao) { this.userDao = userDao; } public void getUser() { userDao.getUser(); }
-
这种思想从本质上解决了修改原代码代价昂贵的问题,我们程序员不在去管理对象的创建,系统的耦合性大大降低,可以更加专著在业务的实现上,这就是 IOC 的原型
3、IOC 本质
控制反转 IOC(Inversion of Control),是一种设计思想,DI(依赖注入)是实现 IOC 的一种方法。
- 没有 IOC 的程序中,我们使用的是面向对象编程,对象的创建于对象间的依赖关系完全硬编码在程序中
- 对象的创建由程序自己控制,控制反转后,将对象的创建转移给第三方
- 获得依赖的方式反转了
IOC 是 Spring 框架的核心内容,使用多种方式完美的实现了 IOC
- 可以使用 XML 配置
- 可以使用 注解
- 新版本的 Spring 也可以零配置实现 IOC
Spring 容器在初始化时先读取配置文件,根据配置文件或元数据创建与组织对象存入容器中,程序使用时在从 IOC 容器中取出来需要的对象
- Spring 工作视图
采用 XML 方式配置 Bean 的时候,Bean 的定义信息是和实现分离的,而采用注解的方式可以把两者合为一体,Bean 的定义信息直接以注解的形式定义在实现类中,从而达到了零配置的目的。
控制反转是一种通过描述(XML 或注解)并通过第三方去生产或获取特定对象的方式。在 Spring 中实现控制反转的是 IOC 容器,器实现方法时依赖注入(DI,Dependency Injection)
4、HelloSpring
4.1 步骤:
-
导入 Spring 相关的 jar 包
<!--spring-webmvc--> <!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.3.10</version> </dependency> <!--单元测试--> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13</version> </dependency>
-
编写 Hello 实体类
public class Hello { private String str; public String getStr() { return str; } public void setStr(String str) { this.str = str; } @Override public String toString() { return "Hello{" + "str='" + str + '\'' + '}'; } }
-
编写 applicationBeans.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 https://www.springframework.org/schema/beans/spring-beans.xsd"> <!--使用 Spring 来创建对象,在 Spring 这些都称为 Bean 类型 变量名 = new 类型(); id = 变量名 class = new 的对象 property = 给对象中的属性设置一个值 --> <bean id="hello" class="com.aze.pojo.Hello"> <property name="str" value="Spring"/> </bean> </beans>
-
测试
public class MyTest { @Test public void test(){ // 获取 Spring 的上下文对象 ApplicationContext context = new ClassPathXmlApplicationContext("applicationBeans.xml"); // 我们的对象现在都在 Spring 中管理了,我们要使用直接取出来就可以了 Hello hello = (Hello) context.getBean("hello"); System.out.println(hello.toString()); } }
4.2 问题?以及总结
Hello 对象是谁创建的?
Hello 对象的属性是怎么设置的?
- Hello 对象是由 Spring 创建的,对象的属性是有 Spring 容器设置的
- 这个过程就叫做控制反转
- 控制:谁来控制对象的创建,传统应用程序的对象是由程序本身控制创建的,使用 Spring 后,对象是由 Spring 来创建的
- 反转:程序本身不创建对象,而变成被动的接收对象
- 依赖注入:就是利用 set 方法来进行注入的
- IOC 是一种编程思想,由主动的编程变成被动的接收
- 可以通过 new ClassPathXmlApplicationContext 来浏览底层代码
现在我们就已经不用在到程序中去改动代码,去实现不同的操作了,只要在 xml 文件里修改就行
IOC:对象有 Spring 来创建、管理、装配!
5、IOC 创建对象的方式
-
默认是使用无参构造创建对象的
-
假设我们要是用有参构造创建对象,有一下三种方式:
-
对下标赋值
<!--方式一:下标赋值--> <bean id="user" class="com.aze.pojo.User"> <constructor-arg index="0" value="真牛画笔"/> </bean>
-
对数据类型赋值(不推荐使用这个)
<!--方式二:根据数据类型赋值--> <bean id="user" class="com.aze.pojo.User"> <constructor-arg type="java.lang.String" value="哈撒开"/> </bean>
-
对变量名赋值
<!--方式三:对变量名赋值--> <bean id="user" class="com.aze.pojo.User"> <constructor-arg name="name" value="嘿嘿嘿"/> </bean>
-
在配置文件加载的时候,容器中管理的对象就已经初始化了!
6、Spring 配置
6.1 别名
<bean id="user" class="com.aze.pojo.User"/>
<!--设置了别名就可以通过该别名获取这个对象-->
<alias name="user" alias="u"/>
alias 标签取别名只能一对一对应
但是在 bean 中取得别名可以同时取多个(可以通过空格、逗号、分号来分割不同的别名)
<bean id="user" class="com.aze.pojo.User" name="u u1,us1;user1"/>
6.2 Bean 配置
bean:
- id:bean 的唯一标识符,也相当于对象名
- class:bean 对象所对应的全限定名(包名 + 类型)
- name:别名,而且 name 取得别名可以有多个(不同别名之间用空格、逗号、分号来分割)
property:对这个bean 中的属性赋值
constructor-arg:对有参构造的参数进行赋值
6.3 import
一般用于团队开发使用,它可以将多个配置文件导入合并为一个
-
例如:项目开发中有三人参与,三人负责不同的类开发,不同的类需要注册不同的 bean 中,而我们就可以使用 import 将所有人的 beans.xml 配置文件合并为一个总的配置文件。(每个人的配置文件的名字都可以随便取)
-
开发者一号(beans1.xml)
-
开发者二号(beans2.xml)
-
开发者三号(beans3.xml)
-
总的配置文件:applicationContext.xml
<import resource="beans1.xml"/> <import resource="beans2.xml"/> <import resource="beans3.xml"/>
-
要使用的时候,直接使用总的配置文件就可以了!
7、依赖注入(DI)
7.1 构造器注入
前面写的 IOC 创建对象,使用有参构造创建对象,这种就是构造器注入
7.2 Set 方式注入(重点)
- 依赖注入:本质就是 Set 注入
- 依赖:bean 对象的创建依赖于 Spring 容器
- 注入:bean 对象中的所有属性,由容器来注入
Set 方式注入环境搭建:
-
复杂类型(Address.java)
private String address;
-
真实测试对象(Student.java)
private String name; private Address address; private String[] books; private List<String> hobbies; private Map<String, String> card; private Set<String> games; private String wife; private Properties info;
-
配置(application.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 https://www.springframework.org/schema/beans/spring-beans.xsd"> </beans>
-
测试类
@Test public void test(){ ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml"); context.getBean(""); }
注入信息编写:
<bean id="address" class="com.aze.pojo.Address">
<property name="address" value="广东"/>
</bean>
<bean id="student" class="com.aze.pojo.Student">
<!--第一种,普通值注入,value-->
<property name="name" value="牛的牛的"/>
<!--第二种,Bean 注入,ref-->
<property name="address" ref="address"/>
<!--第三种,数组-->
<property name="books">
<array>
<value>红书</value>
<value>黑书</value>
<value>黄书</value>
</array>
</property>
<!--第四种,List-->
<property name="hobbies">
<list>
<value>打游戏</value>
<value>睡觉</value>
<value>学习</value>
</list>
</property>
<!--第五种,Map,(value-key 键值对)-->
<property name="card">
<map>
<entry key="学生证" value="666666"></entry>
<entry key="身份证" value="666666"></entry>
</map>
</property>
<!--第六种,Set-->
<property name="games">
<set>
<value>LOL</value>
<value>CF</value>
<value>DNF</value>
</set>
</property>
<!--第七种,null-->
<property name="wife">
<null/>
</property>
<!--第八种,Properties-->
<property name="info">
<props>
<prop key="driver">com.***.***.***</prop>
<prop key="url">babayidadui</prop>
<prop key="username">root</prop>
<prop key="password">****</prop>
</props>
</property>
</bean>
7.3 拓展方式注入
可以通过使用 p 命名空间和 c 命名空间进行注入
使用 p 命名空间和 c 命名空间需要在配置文件的头文件导入约束:
xmlns:p="http://www.springframework.org/schema/p"
xmlns:c="http://www.springframework.org/schema/c"
使用:
<?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:p="http://www.springframework.org/schema/p"
xmlns:c="http://www.springframework.org/schema/c"
xsi:schemaLocation="http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd">
<!-- p 命名空间,可以直接注入属性的值(property)-->
<bean id="user1" class="com.aze.pojo.User" p:age="18" p:name="大牛逼"/>
<!-- c 命名空间,通过构造器注入(constructor-arg)-->
<bean id="user2" class="com.aze.pojo.User" c:age="18" c:name="小牛逼"/>
</beans>
测试
@Test
public void test01(){
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
User user = context.getBean("user2", User.class);
System.out.println(user.toString());
}
注意:
- p 命名空间和 c 命名空间不能直接使用,需要导入约束!
7.4 Bean 的作用域
7.4.1 单例模式(Spring 默认机制)
定义 bean,并将其作用域设置为为单例时,SpringIoC 容器将创建由该 bean 定义的对象为一个实例。此单个实例存储在此类单例 bean 的高速缓存中,而对该命名 bean 的所有后续请求和引用都返回缓存的对象。
<bean id="user" class="com.aze.pojo.User" scope="singleton"/>
测试
@Test
public void test01(){
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
User user1 = context.getBean("user2", User.class);
User user2 = context.getBean("user2", User.class);
System.out.println(user1 == user2);
}
返回的是一个 true,说明返回的都是同一个缓存对象
7.4.2 原型模式
每次对特定 bean 提出请求时,bean 部署的非单例原型范围都会创建一个新 bean 实例
也就是说,每次从容器中 get 的时候,都会产生一个新对象
<bean id="user" class="com.aze.pojo.User" scope="prototype"/>
测试:返回的是 false
7.4.3 其余的模式
- request
- session
- application
- 以上的这些都是在 web 开发中才能用到
8、Bean 的自动装配
自动装配是 Spring 满足 bean 依赖的一中方式
- Spring 会在上下文中自动寻找,并自动给 bean 装配属性
- 在 Spring 中有三种装配方式
- 在 xml 中显示的配置
- 在 java 中显示配置
- 隐式的自动装配 bean(重点)
8.1 测试
搭建测试环境:(一个人有一条猫一条狗,猫叫,狗叫)
<?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
https://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="cat" class="com.aze.pojo.Cat"/>
<bean id="dog" class="com.aze.pojo.Dog"/>
<bean id="people" class="com.aze.pojo.People">
<property name="name" value="小明"/>
<property name="cat" ref="cat"/>
<property name="dog" ref="dog"/>
</bean>
</beans>
8.2 ByName 自动装配
- byName:会自动在容器上下文中寻找和自己对象 set 方法后面的值对应的 beanId
- 需要 名字相同
<bean id="cat" class="com.aze.pojo.Cat"/>
<bean id="dog" class="com.aze.pojo.Dog"/>
<!--byName:会自动在容器上下文中寻找和自己对象 set 方法后面的值对应的 beanId-->
<bean id="people" class="com.aze.pojo.People" autowire="byName">
<property name="name" value="小明"/>
</bean>
8.3 ByType 自动装配
- byType:会自动在容器上下文中寻找和自己对象类型对应的 bean
- 需要类型全局唯一
- 在类型全局唯一的时候,自己对象的 beanId 不需要写(是根据类型来运行的)
<bean id="cat" class="com.aze.pojo.Cat"/>
<bean id="dog" class="com.aze.pojo.Dog"/>
<!--byType:会自动在容器上下文中寻找和自己对象类型对应的 bean -->
<bean id="people" class="com.aze.pojo.People" autowire="byType">
<property name="name" value="小明"/>
</bean>
结论:
- byName,需要保证所有 bean 的 id 唯一,并且这个 bean 需要和自动注入的属性的 set 方法的值一致
- byType,需要保证所有 bean 的 class 唯一,并且这个 bean 需要和自动注入的属性的类型一致
8.4 使用注解实现自动装配
使用注解:
-
导入约束:context 约束
xmlns:context="http://www.springframework.org/schema/context" http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd
-
配置注解的支持: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>
8.4.1 @Autowired
直接在属性上使用,或者在 set 方式上使用
- 使用 Autowired 注解,就可以不用在编写 Set 方法,前提是这个自动装配的属性是在 IOC(Spring)容器中存在,且符合 byName 自动装配
拓展:
-
@Nullable
- 标记了的这个注解的字段,说明可以为空(null)
-
在 Autowired 注解中定义了 required 属性为 false,说明这个对象可以为空
@Autowired(required = false)
8.4.2 @Qualifier
-
当 @Autowired 自动装配的环境比较复杂,自动装配无法通过一个注解完成的时候
-
可以使用 @Qualifier(value=“xxx”) 来配合@Autowired,从而指定一个唯一的 bean 对象注入
@Qualifier(value="beanId")
8.4.3 @Resource
-
@Resource 功能比较强大,但是不经常用这个,经常使用的是 @Autowired
@Resource
-
@Resource 默认通过 byName 自动装配方式进行,如果 byName 找不到对应的名字,就会通过 byType 实现,如果这两个都找不到,就需要手动的配置 beanId,否则就会报错
@Resource(name = "beanId")
8.4.4 小结
@Resource 与 @Autowired 的区别:
- 都是用来自动装配的,都可以放在属性字段上
- 执行顺序不同
- @Autowired(类型、名字)
- 通过 byType 的方式实现,而且必须要求这个对象存在
- @Resource(名字、类型)
- 默认通过 byName 的方式实现,如果 byName 找不到对应的名字,就会通过 byType 实现,如果这两个都找不到,就需要手动的配置 beanId,否则就会报错
9、使用注解开发
在 Spring4 之后,要使用注解开发,必须导入 aop 的 jar 包
- spring-webmvc 这个 jar 包包括了 aop 的 jar 包
使用注解还需要导入 context 约束,增加注解的支持
9.1 bean
<!--开启注解的支持-->
<context:annotation-config/>
<!--指定要扫描的包,这个包下的注解就会生效-->
<context:component-scan base-package="com.aze.pojo"/>
9.2 属性注入
@Component
public class People {
@Autowired
private Cat cat;
@Autowired
private Dog dog;
@Value("小明")
private String name;
}
9.3 衍生的注解
@Component 有几个衍生注解,在 web 开发中,会按照 MVC 三层架构分层
- dao:@Repository
- service:@Service
- controller:@Controller
这四个注解的功能都是一样的,都是将某个类注册到 Spring 中,装配 bean
9.4 自动装配值
- @Autowired
- @Nullable
- @Resource
9.5 作用域
@Scope
- singleton:单例模式
- prototype:原型模式
9.6 小结
xml 与注解:
- xml:更加万能,适用于任何场合,维护起来简单便捷
- 注解:不是自己的类使用不了,维护相对复杂一些
xml 与 注解的最佳实践:
- xml 用来管理 bean
- 注解只负责完成属性的注入
- 注意:使用注解过程中,必须让注解生效
- 增加注解约束:context
- 开启注解支持:context:annotation-config
- 扫描有注解的包:context:component-scan
<?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/>
<!--指定要扫描的包,这个包下的注解就会生效-->
<context:component-scan base-package="com.aze.pojo"/>
</beans>
10、使用 Java 的方式配置 Spring
现在可以完全不适用 Spring 的 xml 配置来操作,可以全权交给 java
JavaConfig 是 Spring 的一个子项目,在 Spring4 后成为了核心功能
实体类
@Component
public class User {
@Value("小明")
private String name;
public String getName() {
return name;
}
@Override
public String toString() {
return "User{" +
"name='" + name + '\'' +
'}';
}
}
配置类
@Configuration
@ComponentScan("com.aze.pojo")
public class MyConfig {
@Bean
public User user(){
return new User();
}
}
测试
@Test
public void test(){
ApplicationContext context = new AnnotationConfigApplicationContext(MyConfig.class);
User user = context.getBean("user", User.class);
System.out.println(user.getName());
System.out.println(user.toString());
}
这种纯 java 的配置方式,在 SpringBoot 中可以随处可见
11、代理模式
为什么学习代理模式?
- 代理模式就是 SpringAOP 的底层
代理模式的分类:
- 静态代理
- 动态代理
代理模式
- 优点:
- 可以使真实角色的操作更加纯粹(不需要关注一些公共的业务)
- 公共业务交给代理角色(实现了业务的分工)
- 公共业务发生扩展的时候,方便集中管理
- 缺点:
- 一个真实角色就会产生一个代理角色,代码量会夸夸夸变多,开发效率变低
11.1 静态代理
角色分析:
- 抽象角色:一般会使用接口或者抽象类来解决
- 真实角色:被代理的角色
- 代理角色:代理真实角色,代理真实角色后,一般会做一些附属操作
- 客户:访问代理对象的人
步骤:
-
接口(抽象角色)
public interface Rent { // 出租房子 void rent(); }
-
真实角色
// 房东 public class Host implements Rent { public void rent() { System.out.println("房东 host 要出租房子"); } }
-
代理角色
// 中介 public class Proxy { private Host host; public Proxy() { } public Proxy(Host host) { this.host = host; } public void rent(){ // 代理真实角色 host.rent(); // 附属操作 seeHouse(); heTong(); fare(); } // 看房 public void seeHouse(){ System.out.println("中介带你看房"); } // 签合同 public void heTong(){ System.out.println("签署租赁合同"); } // 收中介费 public void fare(){ System.out.println("收中介费"); } }
-
客户端访问代理角色(客户)
public class Client { @Test public void test(){ // 房东要出租房子 Host host = new Host(); // 代理,中介帮房东出租房子,但是,代理角色会有一些自己的附属操作 Proxy proxy = new Proxy(host); // 客户不用找房东,直接找中介就可以租房 proxy.rent(); } }
11.2 静态代理拓展
UserService
public interface UserService {
void add();
void update();
void delete();
void select();
}
UserServiceImpl
public class UserServiceImpl implements UserService {
public void add() {
System.out.println("add");
}
public void update() {
System.out.println("update");
}
public void delete() {
System.out.println("delete");
}
public void select() {
System.out.println("select");
}
}
UserServiceProxy
public class UserServiceProxy {
private UserServiceImpl userService;
public void setUserService(UserServiceImpl userService) {
this.userService = userService;
}
public void add(){
log("add");
userService.add();
}
public void update(){
log("update");
userService.update();
}
public void delete(){
log("delete");
userService.delete();
}
public void select(){
log("select");
userService.select();
}
// 日志方法
public void log(String msg){
System.out.println("[日志] 使用了" + msg + "方法");
}
}
Client
@Test
public void test(){
UserServiceImpl userService = new UserServiceImpl();
UserServiceProxy proxy = new UserServiceProxy();
proxy.setUserService(userService);
proxy.add();
}
10.3 动态代理
动态代理和静态代理角色一样
动态代理的代理类是动态生成的,不是我们直接写好的
动态代理分为两大类:
- 基于接口的动态代理:JDK 动态代理
- 基于类的动态代理:cglib
- java 字节码实现:javasist
动态代理需要了解两个类:
- Proxy:生成动态代理实例
- InvocationHandler:调用处理程序,并返回结果
动态代理的优点:
- 可以使真实角色的操作更加纯粹(不需要关注一些公共的业务)
- 公共业务交给代理角色(实现了业务的分工)
- 公共业务发生扩展的时候,方便集中管理
- 一个动态代理类代理的是一个接口,一般就是对应的一类业务
- 一个动态代理类可以代理多个类,只要是实现了同一个接口即可
生成动态代理的类:(可以看做为一个生成动态代理的工具类)
public class ProxyInvocationHandler implements InvocationHandler {
private Object target;
public void setTarget(Object target) {
this.target = target;
}
public Object getProxy(){
return Proxy.newProxyInstance(this.getClass().getClassLoader(),target.getClass().getInterfaces(),this);
}
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
Object invoke = method.invoke(target, args);
return invoke;
}
}
12、AOP
12.1 什么是 AOP
AOP(Aspect Oriented Programming)面向切面编程
- 通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术
- AOP 是 OOP 的延续,是软件开发的一个热点,也是 Spring 框架中的一个重要内容,是函数式编程的一种衍生范型
- 利用 AOP 可以对业务逻辑的各个部分进行隔离,从而使业务逻辑各个部分之间的
- 耦合度降低
- 提高程序的可用性
- 提高开发的效率
12.2 AOP 在 Spring 中的作用
提供声明式事务,允许用户自定义切面
- 横切关注点:跨越应用程序多个模块的方式或功能。与我们业务逻辑无关的,但是我们需要关注的部分,就是横切关注点,如:日志、安全、缓存、事务、等等
- 切面(ASPECT):横切关注点被模块化的特殊对象,他是一个类(Log)
- 通知(Advice):切面必须要完成的工作,他是类中的一个方法(Log中的方法)
- 目标(Target):被通知对象
- 代理(Proxy):向目标对象应用通知后创建的对象
- 切入点(PointCut):切面通知执行的“地点”的定义
- 连接点(JoinPoint):与切点匹配的执行点
在 SpringAOP 中,通过 Advice 定义横切逻辑,Spring 中支持 5 种类型的 Advice
即 AOP 在不改变原有代码的情况下,去增加新的功能
11.3 使用 Spring 实现 AOP
public interface UserService {
void add();
void delete();
void update();
void select();
}
public class UserServiceImpl implements UserService {
public void add() {
System.out.println("增添了一个用户");
}
public void delete() {
System.out.println("删除了一个用户");
}
public void update() {
System.out.println("修改了一个用户");
}
public void select() {
System.out.println("查询了一个用户");
}
}
11.3.1 使用 Spring 的 API 接口(主要 SpringAPI 接口实现)
log
public class Log implements MethodBeforeAdvice {
// method:要执行的目标对象的方法
// args:参数
// target:目标对象
public void before(Method method, Object[] args, Object target) throws Throwable {
System.out.println("执行了" + target.getClass().getName() + "的" + method.getName() + "方法");
}
}
afterLog
public class AfterLog implements AfterReturningAdvice {
public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable {
System.out.println(method.getName() + "方法被执行了,返回结果为:" + returnValue);
}
}
配置文件
<?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"
xsi:schemaLocation="http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
https://www.springframework.org/schema/aop/spring-aop.xsd">
<!--注册 bean-->
<bean id="userService" class="com.aze.service.UserServiceImpl"/>
<bean id="log" class="com.aze.log.Log"/>
<bean id="afterLog" class="com.aze.log.AfterLog"/>
<!--方式一:使用原生 Spring API 接口-->
<!--配置 aop:需要导入 aop 的约束-->
<aop:config>
<!--切入点: expression 表达式,-->
<aop:pointcut id="pointcut" expression="execution(* com.aze.service.UserServiceImpl.*(..))"/>
<!--执行环绕增加-->
<aop:advisor advice-ref="log" pointcut-ref="pointcut"/>
<aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/>
</aop:config>
</beans>
测试
@Test
public void test(){
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
UserService userService = context.getBean("userService",UserService.class);
userService.add();
}
11.3.2 自定义实现 AOP(主要是切面定义)
自定义切点
public class DiyPointCut {
public void before(){
System.out.println("方法前");
}
public void after(){
System.out.println("方法后");
}
}
配置
<?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"
xsi:schemaLocation="http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
https://www.springframework.org/schema/aop/spring-aop.xsd">
<!--注册 bean-->
<bean id="userService" class="com.aze.service.UserServiceImpl"/>
<bean id="log" class="com.aze.log.Log"/>
<bean id="afterLog" class="com.aze.log.AfterLog"/>
<!--方拾二:自定义类-->
<bean id="diy" class="com.aze.diy.DiyPointCut"/>
<aop:config>
<!--自定义切面:ref 要引用的类-->
<aop:aspect ref="diy">
<!--切入点-->
<aop:pointcut id="point" expression="execution(* com.aze.service.UserServiceImpl.*(..))"/>
<!--通知-->
<aop:before method="before" pointcut-ref="point"/>
<aop:after method="after" pointcut-ref="point"/>
</aop:aspect>
</aop:config>
</beans>
测试
11.3.3 使用注解实现
AnnotationPointCut
@Aspect // 标注这是一个切面
@Component // 注册 bean
public class AnnotationPointCut {
@Before("execution(* com.aze.service.UserServiceImpl.*(..))")
public void before(){
System.out.println("方法执行前");
}
@After("execution(* com.aze.service.UserServiceImpl.*(..))")
public void after(){
System.out.println("方法执行后");
}
// 环绕增强,我们可以给定一个参数,代表我们要获取处理切入的点
@Around("execution(* com.aze.service.UserServiceImpl.*(..))")
public void around(ProceedingJoinPoint jp) throws Throwable {
System.out.println("环绕前");
Object proceed = jp.proceed();
System.out.println("环绕后");
}
}
配置文件
<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: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/aop
https://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/context
https://www.springframework.org/schema/context/spring-context.xsd">
<!--注册 bean-->
<bean id="userService" class="com.aze.service.UserServiceImpl"/>
<bean id="log" class="com.aze.log.Log"/>
<bean id="afterLog" class="com.aze.log.AfterLog"/>
<!--开启 aop 注解支持-->
<aop:aspectj-autoproxy/>
<!--开启 context 注解支持-->
<context:annotation-config/>
<!--扫描这个包下的 context 注解,使之生效-->
<context:component-scan base-package="com.aze.diy"/>
</beans>
13、整合 MyBatis
步骤:
- 导入相关 jar 包
- junit
- mybatis
- mysql 数据库
- spring 相关
- aop 织入
- mybatis-spring
- 编写配置文件
- 测试
13.1 回忆 MyBatis
步骤:
-
编写实体类
- 记得在核心配置文件中注册
@Data public class User { private int id; private String name; private String pwd; }
-
编写核心配置文件 mybatis-config.xml
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd"> <configuration> <typeAliases> <package name="com.aze.pojo"/> </typeAliases> <environments default="development"> <environment id="development"> <transactionManager type="JDBC"/> <dataSource type="POOLED"> <property name="driver" value="com.mysql.cj.jdbc.Driver"/> <property name="url" value="jdbc:mysql://localhost:3306/mybatis?useSSL=true&useUnicode=true&characterEncoding=UTF-8"/> <property name="username" value="root"/> <property name="password" value="root"/> </dataSource> </environment> </environments> <mappers> <mapper class="com.aze.mapper.UserMapper"/> </mappers> </configuration>
-
编写接口
public interface UserMapper { List<User> getUser(); }
-
编写 Mapper.xml
- 注意:需要在 pom.xml 中build 一下在 java 文件下也能读取到 xml 文件
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="com.aze.mapper.UserMapper"> <select id="getUser" resultType="user"> select * from mybatis.user </select> </mapper>
-
测试
@Test public void test() throws IOException { InputStream in = Resources.getResourceAsStream("mybatis-config.xml"); SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(in); SqlSession sqlSession = sqlSessionFactory.openSession(true); UserMapper mapper = sqlSession.getMapper(UserMapper.class); List<User> userList = mapper.getUser(); for (User user : userList) { System.out.println(user); } }
13.2 mybatis-spring
什么是 MyBatis-Spring?
- MyBatis-Spring 会帮助你将 MyBatis 代码无缝地整合到 Spring 中。
13.2.1 整合实现方式一
spring-dao.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">
<!--配置数据源:数据源有非常多,可以使用第三方的,也可使使用Spring的-->
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost:3306/mybatis?useSSL=false&useUnicode=true&characterEncoding=utf8"/>
<property name="username" value="root"/>
<property name="password" value="root"/>
</bean>
<!--配置SqlSessionFactory-->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<!--关联Mybatis-->
<property name="configLocation" value="classpath:mybatis-config.xml"/>
<property name="mapperLocations" value="classpath:com/aze/mapper/*.xml"/>
</bean>
<!--注册sqlSessionTemplate , 关联sqlSessionFactory-->
<bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
<!--利用构造器注入-->
<constructor-arg index="0" ref="sqlSessionFactory"/>
</bean>
</beans>
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">
<import resource="spring-dao.xml"/>
<bean id="userMapper" class="com.aze.mapper.UserMapperImpl">
<property name="sqlSession" ref="sqlSession"/>
</bean>
</beans>
mybatis-config.xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<typeAliases>
<package name="com.aze.pojo"/>
</typeAliases>
</configuration>
UserMapperImpl
public class UserMapperImpl implements UserMapper {
//sqlSession不用我们自己创建了,Spring来管理
private SqlSessionTemplate sqlSession;
public void setSqlSession(SqlSessionTemplate sqlSession) {
this.sqlSession = sqlSession;
}
public List<User> selectUser() {
UserMapper mapper = sqlSession.getMapper(UserMapper.class);
return mapper.selectUser();
}
}
测试
@Test
public void test2(){
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
UserMapper mapper = (UserMapper) context.getBean("userMapper");
List<User> userList = mapper.selectUser();
for (User user : userList) {
System.out.println(user);
}
}
13.2.1 整合实现方式二
SqlSessionDaoSupport 是一个抽象的支持类,用来为你提供 SqlSession 。调用 getSqlSession() 方法你会得到一个 SqlSessionTemplate
public class UserMapperImpl2 extends SqlSessionDaoSupport implements UserMapper {
public List<User> selectUser() {
return getSqlSession().getMapper(UserMapper.class).selectUser();
}
}
<bean id="userMapper2" class="com.aze.mapper.UserMapperImpl2">
<property name="sqlSessionFactory" ref="sqlSessionFactory"/>
</bean>
测试
@Test
public void test2(){
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
UserMapper mapper = (UserMapper) context.getBean("userMapper2");
List<User> userList = mapper.selectUser();
for (User user : userList) {
System.out.println(user);
}
}
14、声明式事务
14.1 事务
把一组业务当成一个业务来做,要么都成功,要么都失败
事务在项目开发中,十分重要,涉及到数据一致性问题
确保完整性和一致性
- 事务 ACID 原则
- 原子性
- 一致性
- 隔离性
- 多个业务可能操作同一个资源,防止数据损坏
- 持久性
- 事务一旦提交,无论系统发生什么问题,结果都不会再被影响,被持久化的写到存储器中
14.2 spring 中的事务管理
- 声明式事务:AOP
- 编程式事务:需要在代码中,进行事务的管理
为什么需要事务?
- 如果不配置事务,可能存在数据提交不一致的情况
- 如果我们不在 Spring 中配置声明式事务,我们就需要在代码中手动配置事务
- 事务在项目的开发中十分重要,涉及到数据的一致性和完整性
声明式事务:在 spring-dao.xml 中配置声明式事务
<!--配置声明式事务-->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"/>
</bean>
<!--结合 AOP 实现事务的织入-->
<!--配置事务通知:-->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<!--给哪些方法配置事务-->
<!--配置事务的传播性:new propagation-->
<tx:attributes>
<tx:method name="add" propagation="REQUIRED"/>
<tx:method name="delete" propagation="REQUIRED"/>
<tx:method name="update" propagation="REQUIRED"/>
<tx:method name="query" read-only="true"/>
<tx:method name="*" propagation="REQUIRED"/>
</tx:attributes>
</tx:advice>
<!--配置事务切入-->
<aop:config>
<aop:pointcut id="txPointCut" expression="execution(* com.aze.mapper.*.*(..))"/>
<aop:advisor advice-ref="txAdvice" pointcut-ref="txPointCut"/>
</aop:config>