如需转载,请根据 知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议 许可,附上本文作者及链接。
本文作者: Alice
作者昵称: 沉。
本文链接: http://example.com/2020/11/09/Spring%E7%AC%94%E8%AE%B0/
一、Spring认识
1.1、简介
Spring:春天
Spring框架是由于软件开发的复杂性而创建的。Spring使用的是基本的JavaBean来完成以前只可能由EJB完成的事情。然而,Spring的用途不仅仅限于服务器端的开发。从简单性、可测试性和松耦合性角度而言,绝大部分Java应用都可以从Spring中受益。
◆目的:解决企业应用开发的复杂性
◆功能:使用基本的JavaBean代替EJB,并提供了更多的企业应用功能
◆范围:任何Java应用
2002年,首次推出了Spring框架的雏形:interface 21框架。
2004年3月24号诞生,发布了1.0版本
作者 RodJohnSon ,Spring Framework创始人,但他的专业不是计算机,而是悉尼大学音乐专业的博士
Spring历年:使现有的技术更加容易使用,本身是一个大杂烩,整合了现有的技术框架
SSH:Strut2 + Spring +Hibernate
SSM:Spring+SpringMVC+Mybatis
官网:https://spring.io/projects/spring-framework#learn
官方下载地址:http://repo.spring.io/release/org/springframework/spring
GitHub地址:https://github.com/spring-projects/spring-framework
1 | <!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc --> |
优点:
- Spring是一个开源的免费的框架(容器)
- Spring是一个轻量级的、非入侵式的框架!
- 控制反转(IOC),面向切面编程(AOP)
- 支持事务的处理,对框架整合的支持
总结:Spring是一个轻量级控制反转(IOC)和面向切面(AOP)的容器框架。
1.2、组成
在Spring的官网介绍:现代化的Java开发,就是基于Spring的开发
- Spring Boot
- 一个快速开发的脚手架。
- 基于SpringBoot可以快速的开发单个微服务
- 约定大于配置!
- Spring Cloud
- SpringCloud 是基于SpringBoot实现的
现在大多数公司都在使用SpringBoot进行快速开发,学习SpringBoot的前提,需要完全掌握Spring及SpringMVC、
弊端:发展了太久之后,违背了原来的理念,配置十分繁琐,“配置地狱”
二、IOC
2.1、IOC理论推导
以前的代码编写:
- UserDao接口
- UserDaoImpl实现类
- UserService业务接口
- UserServiceImpl业务实现类
在我们之前的业务中,用户的需求可能会影响我们原来的代码,我们需要根据用户的徐牛其修改源代码!如果程序代码量十分大,修改一次的成本代价十分昂贵。
我们使用一个Set接口实现,已经发生了革命性的变化
1 | private UserDao userDao ; |
- 之前程序式主动创建对象,控制权在程序员手上!
- 使用了Set注入后,程序不再具有主动性,而是变成了被动的接收对象
这种思想从本质上解决了问题,我们不用再管理对象的创建了。系统的耦合性大大降低,可硬更加专注的实现业务了!这是IOC的原型
2.2、IOC的本质
控制反转(Inversion of Control),是一种设计思想,DI(依赖注入)是实现IOC的一种方法,也有人认为DI只是IoC的另外一种说法,没有IoC的程序中,我们使用面向对象编程,对象的创建于对象间的依赖关系完全硬编码在程序中,对象的创建由程序自己控制,控制反转后将对象的创建转移给第三方,个人认为所谓的控制反转就是:获得依赖对象的方式反转了。
IoC是Sring框架的核心内容,使用多种方式完美实现了IoC
采用XML方式配置Bean 的时候,Bean的定义信息是和实现分离的,而采用注解的方式就可以把两者和为一体,Bean的定义信息直接以注解的形式定义在实现类中,从而达到了零配置的目的
控制反转是一种通过描述(XML或注解)并通过第三方取生产或获取特定对象的方式。在Spring中实现控制反转的是IoC容器,其实现方法是依赖注入(Dependency Injection,DI)。
2.3、HelloSpring
编写实体类
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18package com.chen.pojo;
public class Hello {
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String toString() {
return "Hello{" +
"name='" + name + '\'' +
'}';
}
}
编写配置文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<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 类型();
Hello hello = new Hello();
id = 变量名
class = new 的对象;
property 相当于给对象中的属性设置一个值
bean=对象 new Hello();
-->
<bean id="hello" class="com.chen.pojo.Hello">
<property name="name" value="Spring"/>
</bean>
</beans>
测试
1
2
3
4
5
6
7
8
9
10public class MyTest {
public static void main(String[] args) {
//获取Sping的上下文对象
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
//我买的呢的对象都在Spring中的管理了,我们要使用,直接去里面取出来就可以!
Hello hello = (Hello) context.getBean("hello");
System.out.println(hello.toString());
}
}
2.4、IOC创建对象的方式
使用无参构造创建对象,默认!
假设我们要使用有参构造创建对象
使用下标赋值
1
2
3
4<!-- 第一种下标赋值-->
<bean id="user" class="com.chen.pojo.User">
<constructor-arg index="0" value="小王子在B768"/>
</bean>使用类型创建
1
2
3
4<!-- 使用类型创建,不建议使用-->
<bean id="user" class="com.chen.pojo.User">
<constructor-arg type="java.lang.String" value="玫瑰花"/>
</bean>通过参数名来构造
1
2
3
4<!-- 第三种方法,直接通过参数名来创建-->
<bean id="user" class="com.chen.pojo.User">
<constructor-arg name="name" value="张三"/>
</bean>
总结:在配置文件加载的时候,容器中管理的对象就已经初始化了
2.5、Spring配置
别名alias:
1 | <!--别名,如果使用别名我们也可以使用别名获取对象--> |
Bean的配置
1 | <!-- |
import:一般用于团队开发使用,它可以用多个文件导入合并成一个通过
三、DI依赖注入
3.1、构造器注入
上面说过了
3.2、Set方式注入【重点】
- 依赖注入:Set注入
- 依赖:bean对象的创建依赖于容器
- 注入:bean对象中的所有属性由容器来注入
环境搭建:
复杂类型
1
2
3
4
5
6
7
8
9
10
11
12
13
14package com.chen.pojo;
public class Address {
private String address;
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
}
真实测试对象
1
2
3
4
5
6
7
8
9
10
11public class Student {
private String name;
private Address address;
private String [] books;
private List<String> hobbys;
private Map<String,String > card;
private Set<String > games;
private String wife;
private Properties info;
}beans.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<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="address" class="com.chen.pojo.Address">
<property name="address" value="西安"/>
</bean>
<bean id="student" class="com.chen.pojo.Student">
<!--第一种,普通值注入-->
<property name="name" value="小王子"/>
<!--第二种,Bean注入-->
<property name="address" ref="address"/>
<!--第三种,数组注入-->
<property name="books">
<array>
<value>红楼梦</value>
<value>三国演义</value>
<value>西游记</value>
<value>水浒传</value>
</array>
</property>
<!--第四种,list集合注入-->
<property name="hobbys" >
<list>
<value>听歌</value>
<value>打游戏</value>
<value>写代码</value>
</list>
</property>
<!--第五种,Map注入-->
<property name="card" >
<map>
<entry key="身份证" value="123456789"/>
<entry key="银行卡" value="6123121"/>
<entry key="校园卡" value="6123121"/>
</map>
</property>
<!--第六种,Set注入-->
<property name="games" >
<set>
<value>LOL</value>
<value>飞车</value>
<value>CF</value>
</set>
</property>
<!--第七种,Null注入-->
<property name="wife">
<null/>
</property>
<!--第八种,Properties注入-->
<property name="info">
<props>
<prop key="driver">11111</prop>
<prop key="url">男</prop>
<prop key="username">小王子</prop>
<prop key="password">123456</prop>
</props>
</property>
</bean>
</beans>测试类
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20public class MyTest {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
Student student = (Student) context.getBean("student");
System.out.println(student.toString());
/*
Student{name='小王子',
address=Address{address='西安'},
books=[红楼梦, 三国演义, 西游记, 水浒传],
hobbys=[听歌, 打游戏, 写代码],
card={身份证=123456789, 银行卡=6123121, 校园卡=6123121},
games=[LOL, 飞车, CF],
wife='null',
info={password=123456, url=男, driver=11111, username=小王子}}
*/
}
}
3.3、拓展方式注入
我们可以使用p命名空间和c命名空间注入:
官方文档:
p命名空间注入
1
2
3
4
5
6
7
8
9
10
11
<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"
xsi:schemaLocation="http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd">
<!--p命名空间注入可以直接注入属性的值-->
<bean id="user" class="com.chen.pojo.User" p:name="小王子" p:age="18">
</bean>
</beans>
c命名空间注入
1
2
3
4
5
6
7
8
9
10
11
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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">
<!--c命名空间注入可以通过构造器注入:construct-->
<bean id="user" class="com.chen.pojo.User" c:name="小玫瑰" c:age="28">
</bean>
</beans>
注意点:p命名和c命名空间不嫩郭志杰使用,需要导入各自的xml约束
1 | xmlns:p="http://www.springframework.org/schema/p" |
3.4、Bean的作用域
单例模式(Spring默认模式)
1
2
3<bean id="user" class="com.chen.pojo.User" c:name="小玫瑰" c:age="28" scope="singleton">
</bean>原型模式:每次从容器中get的时候,都会产生一个新对象
1
2
3<bean id="user" class="com.chen.pojo.User" c:name="小玫瑰" c:age="28" scope="prototype">
</bean>
- 其余的request、session、application这些个只能在web开发中使用到!
四、Bean的自动装配
自动装配是Spring瞒住bean依赖的一种方式!
Spring会在上下文中自动寻找,并自动给bean装配属性
在Spring中有三种装配方式
- 在xml中显示的配置
- 在java中显式配置
- 隐式的自动装配bean【重要】
4.1、测试
环境搭建:一个人有两个宠物!
实体类
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53public class Dog {
public void shout(){
System.out.println("wang~");
}
}
public class Cat {
public void shout(){
System.out.println("miao~");
}
}
public class Person {
private Cat cat;
private Dog dog;
private String name;
public String toString() {
return "Person{" +
"cat=" + cat +
", dog=" + dog +
", name='" + name + '\'' +
'}';
}
public Cat getCat() {
return cat;
}
public void setCat(Cat cat) {
this.cat = cat;
}
public Dog getDog() {
return dog;
}
public void setDog(Dog dog) {
this.dog = dog;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}配置文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<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.chen.pojo.Cat"/>
<bean id="dog" class="com.chen.pojo.Dog"/>
<bean id="person" class="com.chen.pojo.Person">
<property name="name" value="小王子啊"/>
<property name="dog" ref="dog"/>
<property name="cat" ref="cat"/>
</bean>
</beans>测试
1
2
3
4
5
6
7
8
9
10public class Mytest {
public void test1(){
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
Person person = context.getBean("person", Person.class);
person.getCat().shout();
person.getDog().shout();
}
}
4.2、自动装配
byName自动装配
1
2
3
4
5
6
7
8
9<!--
byname:会自动在容器中的上下文查找,和自己对象set方法后面的值对应的beanid
-->
<bean id="person" class="com.chen.pojo.Person" autowire="byName">
<property name="name" value="小王子啊"/>
<!-- <property name="dog" ref="dog"/>-->
<!-- <property name="cat" ref="cat"/>-->
</bean>
byType自动装配
1
2
3
4
5
6<!--byType:会自动在容器中的上下文查找,和自己对象属性类型相同的bean!但属性的权值必须为1 -->
<bean id="person" class="com.chen.pojo.Person" autowire="byType">
<property name="name" value="小王子啊"/>
</bean>
小结:
- byName的时候,需要保证所有Bean 的id唯一,并且这个bean需要和自动注入的属性的set方法的值一致
- byType的时候,需要保证所有Bean 的class唯一,并且这个bean需要和自动注入的属性的类型一致
4.2、使用注解实现自动装配
jdk1.5支持的注解,Spring2.5就支持注解了
编写实体类偷懒的插件lombok
1 | <dependency> |
使用注解须知:
导入约束:context约束
配置注解的支持【重要】
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<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>@Autowired
直接在属性上使用即可,也可以在set方法上使用!
使用@Autowired之后可以忽略set方法了,前提是你这个自动装配的属性在IOC(Spring)容器中存在,且符合byName!
科普:
1
@Nullable 字段标记了这个注解,说明这个字段可以为null
1
2
3
4
5public Autowired {
boolean required() default true;
}
//如果显示定义了Autowired的require属性为false,说明这个对象可以为null,否则不允许为空
如果@Autowired自动装配的环境比较复杂,自动装配无法通过一个注解完成的时候,我们可以使用@Qualifier(value = “dog222”)去配置@Autowired的使用,指定一个唯一的bean对象注入!
1 |
|
@Resource也可以完成自动装配,这个注解不是spring的,而是java的原生注解,它也可以通过name属性指定
小结:
@Resource和@Autowired的比较:
- 都是用来自动装配的,都可以放在属性字段上
- @Autowired通过byType的方式实现,而且必须要求这个对象存在!【常用】
- @Resource默认通过byname的方式实现,如果找不到名字,则通过byType实现!如果两个都找不到,就报错!【常用】
- 执行顺序不同:@Autowired通过byType的方式实现,@Resource默认通过byname的方式实现
五、Spring使用注解开发
在Srping4之后,要使用直接开发,必须保证aop包的导入
使用注解需要导入context约束,增加注解的支持。
1 |
|
5.1、Bean
1 | @Component:组件,放在类上,说明这个类被Spring管理了,就是bean! |
5.2、属性如何注入
1 | //相当于<property name="name" value="狂神"/> |
5.3、衍生的注解
@Component有几个衍生注解,我们在web开发中,会按照mvc三层架构分层!
- dao【@Repository】
- service【@Service】
- controller【@Controller】
这四个注解功能都是一样的,都是代表将某个类注册到Spring中,装备Bean
5.4、自动装配注解
上小节分析过的注解
@Resource:通过byType的方式实现
@Autowired:默认通过byname的方式实现
5.5、作用域
@Scpoe(“prototype”)原型模式
@Scope(“singleton”)单例模式
5.6、小结
xml与注解:
- xml更加万能,适用于任何场合!维护简单方便
- 注解:不是自己的类使用不了
xml与注解的最佳实践:
xml用来管理bean
注解只负责完成属性的注入;
我们在使用的过程中,只需要注意一个问题,必须要使注解生效,就需要开启注解的支持
1
2
3
4<!-- 注解的支持-->
<context:annotation-config/>
<!-- 直到要扫描的包,这个包下的注解就会生效-->
<context:component-scan base-package="com.chen"/>
六、使用Java的方式配置Spring
我们现在要完全不使用Spring的xml配置了,全权交给Java来做
JavaConfig是Spring的一个子项目,在Spring4之后,它成为了一个核心功能
- 实体类:
1 | package com.chen.pojo; |
- 配置类
1 | package com.chen.config; |
- 测试类
1 | public class Mytest { |
这种纯Java的配置方式,在SpringBoot中随处可见!
七、代理模式
7.1、代理模式介绍
为什么要学代理模式?因为这就是Spring AOP的底层!
代理模式的分类:
- 静态代理
- 动态代理
7.2、静态代理
角色分析:
- 抽象角色:一般会使用接口或者抽象类来解决
- 真实角色:被代理的角色
- 代理角色:代理真实角色,代理真实角色后,我们一般会做一下附属操作
- 客户:访问代理对象的人
代码步骤
接口
1
2
3
4
5
6//租房
public interface Rent {
public void rent();
}
真实角色
1
2
3
4
5
6//房东
public class Host implements Rent {
public void rent() {
System.out.println("房东要出租房子!");
}
}
代理角色
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37package com.chen.Demo01;
public class Proxy implements Rent {
private Host host;
public Proxy(Host host) {
this.host = host;
}
public Proxy() {
}
//代理帮房东租房子
public void rent() {
host.rent();
seeHouse();
contract();
fare();
}
//看房
public void seeHouse(){
System.out.println("中介带你看房");
}
//收中介费
public void fare(){
System.out.println("收中介费");
}
//签合同
public void contract(){
System.out.println("签租房合同");
}
}
客户端访问代理角色
1
2
3
4
5
6
7
8
9
10
11
12
13package com.chen.Demo01;
public class Client {
public static void main(String[] args) {
//房东要租房子
Host host = new Host();
//代理,中介帮房东租房子,代理角色会有一节附属操作
Proxy proxy = new Proxy(host);
//你不用面对房东,直接找中介租房即可
proxy.rent();
}
}
代理模式的好处:
- 可以使真实角色的操作更加纯粹,不用去关注一些公共的业务
- 公共业务就交给代理角色,实现了业务的分工
- 公共业务发生扩展的时候,方便集中管理
缺点:
- 一个真实角色就会产生一个代理角色,代码量会翻倍,开发效率变低
AOP初步理解:
7.3、动态代理
动态代理的底层都是反射完成的
- 动态代理和静态代理角色一样
- 动态代理类是动态生成的,不是我们直接写好的
- 动态代理分为两大类:
- 基于接口的动态代理—-JDK动态代理【我们在这里使用】
- 基于类的动态代理—-cglib
- java字节码实现:javasist
需要了解两个类:Proxy:代理,InvocationHandler:调用处理程序
动态代理的好处:
- 可以使真实角色的操作更加纯粹,不用去关注一些公共的业务
- 公共业务就交给代理角色,实现了业务的分工
- 公共业务发生扩展的时候,方便集中管理
- 一个动态代理类代理的是一个接口,一般就是对应的一类业务
- 一个动态代理类可以代理多个类,只要是实现了同一个接口即可!
代码实现:
万能代理类
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42package com.chen.Demo04;
import com.chen.Demo03.Rent;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
//这个类自动生成代理类!
public class ProxyInvocationhandler implements InvocationHandler {
//被代理的接口
private Object target;
public void setTarget(Object target) {
this.target = target;
}
//生成得到代理对象
public Object getProxy(){
Object o = Proxy.newProxyInstance(this.getClass().getClassLoader(), target.getClass().getInterfaces(),
this);
return o;
}
//处理代理实例并生成结果
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
log(method.getName());
//动态代理的本质就是使用反射机制实现
Object result = method.invoke(target, args);
return result;
}
public void log(String msg){
System.out.println("执行了"+msg+"方法");
}
}测试
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24package com.chen.Demo04;
import com.chen.Demo02.UserService;
import com.chen.Demo02.UserServiceImpl;
public class Client {
public static void main(String[] args) {
//真实角色
UserServiceImpl userService = new UserServiceImpl();
//代理角色
ProxyInvocationhandler pih = new ProxyInvocationhandler();
pih.setTarget(userService);//设置要代理的对象
//动态生成代理类
UserService proxy = (UserService)pih.getProxy();
proxy.add();
}
}
八、AOP
8.1、什么是AOP?
AOP(Aspect Oriented Programming)意为:面向切面编程,通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术。AOP是OOP的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范型。利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。
8.2、Aop在Spring中的作用
提供声明式事务;允许用户自定义切面
以下名词需要了解下:
- 横切关注点:跨越应用程序多个模块的方法或功能。即是,与我们业务逻辑无关的,但是我们需要关注的部分,就是横切关注点。如日志 , 安全 , 缓存 , 事务等等 ….
- 切面(ASPECT):横切关注点 被模块化 的特殊对象。即,它是一个类。
- 通知(Advice):切面必须要完成的工作。即,它是类中的一个方法。
- 目标(Target):被通知对象。
- 代理(Proxy):向目标对象应用通知之后创建的对象。
- 切入点(PointCut):切面通知 执行的 “地点”的定义。
- 连接点(JointPoint):与切入点匹配的执行点。
SpringAOP中,通过Advice定义横切逻辑,Spring中支持5种类型的Advice:
【重点】使用AOP植入,需要导入一个依赖包,maven依赖:
1 | <dependency> |
方式一:使用Spring的API接口【主要是SpringAPI接口实现】
- 配置文件
1 | <!-- 注册bean--> |
- 测试代码
1 | public class MyTest { |
方式二:使用自定义类来实现【主要是切面】
配置文件
1
2
3
4
5
6
7
8
9
10
11
12<!--方式二:自定义类-->
<bean id="diy" class="com.chen.diy.DiyPointCut"/>
<aop:config>
<!--自定义切面,ref要引用的类-->
<aop:aspect ref="diy">
<!--切入点-->
<aop:pointcut id="point" expression="execution(* com.chen.service.UserService.*(..))"/>
<!--通知-->
<aop:before method="before" pointcut-ref="point"/>
<aop:after method="after" pointcut-ref="point"/>
</aop:aspect>
</aop:config>测试代码不变
方式三:注解实现AOP
- 配置文件
1 | <!--方式三:--> |
- 注解方式实现代码
1 | package com.chen.diy; |
九、整合Mybatis
步骤:
- 导入相关jar包
- junit
- Mybatis
- mysql数据库
- spring相关的
- aop织入
- mybatis-spring【new】
- 编写配置文件
- 测试
9.1、回忆Mybatis
编写实体类
编写核心配置文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<configuration>
<properties resource="db.properties"/>
<typeAliases>
<package name="com.chen.pojo"/>
</typeAliases>
<environments default="development">
<environment id="development">
<transactionManager type="JDBC"/>
<dataSource type="POOLED">
<property name="driver" value="${driver}"/>
<property name="url" value="${url}"/>
<property name="username" value="${username}"/>
<property name="password" value="${password}"/>
</dataSource>
</environment>
</environments>
<mappers>
<mapper class="com.chen.mapper.UserMapper"/>
</mappers>
</configuration>
编写接口
编写Mapper.xml
1
2
3
4
5
6
7
8
9
10
11
12
<mapper namespace="com.chen.mapper.UserMapper">
<select id="selectUser" resultType="user">
select * from user;
</select>
</mapper>
测试
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
public void test() throws IOException {
String resource = "mybatis-config.xml";
InputStream is = Resources.getResourceAsStream(resource);
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(is);
SqlSession sqlSession = sqlSessionFactory.openSession(true);
UserMapper mapper = sqlSession.getMapper(UserMapper.class);
List<User> users = mapper.selectUser();
for (User user : users) {
System.out.println(user);
}
sqlSession.close();
}
所需要的相关依赖:
1 | <dependencies> |
9.2、Mybatis-Spring
方式一:
编写数据源配置
sqlSessionFactory
sqlSessionTemplate
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<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"
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/context
https://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop
https://www.springframework.org/schema/aop/spring-aop.xsd">
<!--DataSource:使用Spring的数据源替换Mybatis的配置 c3p0 dbcp druid
我们这里使用Spring提供的JDBC:org.springframework.jdbc.datasource
-->
<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=true&useUnicode=true&characterEncoding=UTF-8"/>
<property name="username" value="root"/>
<property name="password" value="chen19990217...+"/>
</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/chen/mapper/*.xml"/>
</bean>
<!-- SqlSessionTemplate:就是我们使用的sqlSession-->
<bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
<!--只能使用构造器注入sqlSessionFactory,因为它没有set方法-->
<constructor-arg index="0" ref="sqlSessionFactory"/>
</bean>
<bean id="userMapper" class="com.chen.mapper.UserMapperImpl">
<property name="sqlSession" ref="sqlSession"/>
</bean>
</beans>
需要将接口加实现类
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15public class UserMapperImpl implements UserMapper {
//我们的所有操作,在原来都使用sqlSession来执行,现在都是用SqlSessionTemplate
private SqlSessionTemplate sqlSession;
public void setSqlSession(SqlSessionTemplate sqlSession) {
this.sqlSession = sqlSession;
}
public List<User> selectUser() {
UserMapper mapper = sqlSession.getMapper(UserMapper.class);
return mapper.selectUser();
}
}
将自己写的实现类注入到Spring中
1
2
3<bean id="userMapper" class="com.chen.mapper.UserMapperImpl">
<property name="sqlSession" ref="sqlSession"/>
</bean>
测试使用
1
2
3
4
5
6
7
8
9
10
11
12
13
public void test(){
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
UserMapper userMapper = context.getBean("userMapper", UserMapper.class);
List<User> users = userMapper.selectUser();
for (User user : users) {
System.out.println(user);
}
}
方式二:继承SqlSessionDaoSupport类实现
配置文件:
1 | <bean id="userMapper2" class="com.chen.mapper.UserMapperImpl2"> |
实现类:
1 | public class UserMapperImpl2 extends SqlSessionDaoSupport implements UserMapper { |
十、声明式事务
10.1、回顾事务
- 把一组业务当成一个业务来做,要么都成功,要么都失败!
- 食物在项目开发中十分重要,涉及到数据的一致性问题,不能马虎
- 确保完整性和一致性;
事务的ACID原则:
- 原子性
- 一致性
- 隔离性
- 多个业务可能操作同一个资源,防止数据损坏
- 持久性
- 事务一旦提交,无论系统发生什么问题,结果都不会再被影响,被持久化的写到存储器中
10.2、Spring中事务管理
- 声明式事务:AOP应用【我们使用这个】
- 编程式事务:需要在代码中进行事务的管理
Spring中七种Propagation类的事务属性详解:
REQUIRED:支持当前事务,如果当前没有事务,就新建一个事务。这是最常见的选择。
SUPPORTS:支持当前事务,如果当前没有事务,就以非事务方式执行。
MANDATORY:支持当前事务,如果当前没有事务,就抛出异常。
REQUIRES_NEW:新建事务,如果当前存在事务,把当前事务挂起。
NOT_SUPPORTED:以非事务方式执行操作,如果当前存在事务,就把当前事务挂起。
NEVER:以非事务方式执行,如果当前存在事务,则抛出异常。
NESTED:支持当前事务,如果当前事务存在,则执行一个嵌套事务,如果当前没有事务,就新建一个事务。
配置文件:
1 |
|
如果不配置事务,可能存在数据提交不一致的情况
如果我们不再Spring中配置声明式事务,我们就需要在代码中手动配置事务!
完结撒花~~
SpringMVC见!!!
-------------本文结束感谢您的阅读-------------
本文链接: http://example.com/2020/11/09/Spring%E7%AC%94%E8%AE%B0/
版权声明: 本作品采用 知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议 进行许可。转载请注明出处!