0%

Spring

学习Spring框架

Sping

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.2.12.RELEASE</version>
</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.2.0.RELEASE</version>
</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>5.2.0.RELEASE</version>
</dependency>

优点

  • Spring是一个开源的免费的框架(容器)
  • Spring是一个轻量级的、非入侵式的框架
  • 控制反转(IOC),面向切面编程(AOP)
  • 支持事务的处理,对框架整合的支持

总结一句话:Spring就是一个轻量级的控制反转(IOC)和面向切面编程(AOP)的框架

组成

扩展

在Spring的官网有这个介绍:现代化的Java开发,说白就是基于Spring的开发

  • Spring Boot
    • 一个快速开发的脚手架
    • 基于SpringBoot可以快速的开发单个微服务
    • 约定大于配置!
  • Spring Cloud
    • SpringCloud是基于SpringBoot实现的

因为现在大多数公司都在使用SpringBoot进行快速开发,学习SpringBoot的前提,需要完全掌握Spring及SpringMVC!承上启下的作用

弊端:发展了太久之后违背了原来的理念!配置十分繁琐,人称:”配置地狱”

IOC理论推导

  1. UserDao接口
  2. UserDaoImpl
  3. UserService业务接口
  4. UserServiceImpl业务实现类

在我们之前的业务中,用户的需求可能会影响我们原来的代码,我们根据用户的需求去修改源代码!如果程序代码量巨大,修改一次的成本代价十分昂贵!

我们使用一个Set接口实现,已经发生了革命性的变化!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
private UserDao userDao;

//利用set进行动态实现值的注入!
public void setUserDao(UserDao userDao) {
this.userDao = userDao;
}

public class LearnTest {
public static void main(String[] args) {
UserService userService = new UserServiceImpl();

userService.setUserDao(new UserDaoMysqlImpl());

userService.getUser();
}
}
  • 之前,程序是主动创建对象!控制权在程序员手上
  • 使用了set注入后,程序不再具有主动性,而是变成了被动的接受对象

这种思想,从本质上解决了问题,程序员不用再去管理对象的创建了。系统的耦合性大大降低,可以专注在业务的实现上!这是IOC的原型!

IOC本质

控制反转IoC(Inversion of Conrol),是一种设计思想DI(依赖注入)是实现IoC的一种方法,也有人认为DI(Dependency Injection)只是IoC的另一种说法。

没有IoC的程序中,我们面向对象编程,对象的创建与对象的依赖关系完全硬编码在程序中,对象的创建由程序自己控制,控制反转后将对象的创建转移给第三方。

所谓控制反转就是:获得依赖对象的方式反转了

采用XML方式配置Bean的时候,Bean的定义信息是和实现分离的,而采用注解的方式可以把两者合为一体,Bean的定义信息直接以注解的形式定义在实现类中,从而达到了零配置的目的。

控制反转是一种通过描述(XML或注解)并通过第三方去生产或获取特定对象的方式。在Spring中实现控制反转的是IoC容器,其实现方式是依赖注入(DI)

Hello Spring

Hello:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.zwl.pojo;

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 + '\'' +
'}';
}
}

beans.xml:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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来创建对象,在Spring中这些都被称为Bean
类型 变量名 = new 类型()
Hello hello = new hello();

id = 变量名
class = new 的对象
property 相当于给对象的属性

-->
<bean id="hello" class="com.zwl.pojo.Hello">
<property name="str" value="Spring"/>
</bean>

</beans>

mainTest:

1
2
3
4
5
6
7
8
9
10
11
12
import com.zwl.pojo.Hello;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MyTest {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
//我们的对象现在都在Spring中的管理了,我们要使用,直接去里面取出来
Hello hello = (Hello) context.getBean("hello");
System.out.println(hello.toString());
}
}
  • Hello 对象有谁创建?

    hello对象由Spring创建

  • Hello对象的属性怎么设置?

    hello对象的属性是由Spring容器设置

这个过程就叫控制反转:

控制:谁来控制对象的创建,传统应用程序的对象是由程序本身控制创建的,使用Spring后,对象是由Spring来创建

反转:程序本身不创建对象,而变为被动的接收对象

依赖注入:就是利用set方法来进行注入的

IOC是一种编程思想,由主动的编程编程被动的接受

可以通过new ClassPathXmlApplicationContext 去浏览一下底层源码

到了现在,我们彻底不用同在程序中取改动了,要实现不同的操作,只需要在xml配置文件中进行,所谓的IoC,一句话搞定:对象由Spring来创建,管理,装配

IOC创建对象的方式

  1. 使用无参构造创建对象,默认!

    1
    2
    3
    <bean id="user" class="com.zwl.User">
    <property name="name" value="zwl"/>
    </bean>
  2. 要使用有参构造创建对象:

  • index参数位置序号

    1
    2
    3
    <bean id="user" class="com.zwl.User">
    <constructor-arg index="0" value="zwl2"/>
    </bean>
  • type:只存在这一个类型时使用

    1
    2
    3
    <bean id="user" class="com.zwl.User">
    <constructor-arg type="java.lang.String" value="zwl2"/>
    </bean>
  • name最为常用,只需掌握这个

    1
    2
    3
    <bean id="user" class="com.zwl.User">
    <constructor-arg name="name" value="zwl2"/>
    </bean>

总结:在配置文件加载的时候,容器中管理的对象就已经初始化了(所有bean在运行中都会被实例化,无论是否程序中会用到)

Spring配置

别名

1
2
<!--如果添加了别名,我们也可以使用别名获取到这个对象 -->
<alias name="user" alias="user2"/>

Bean的配置

1
2
3
4
5
6
7
8
9
<!--
id: bean 的唯一标识符,也就是相当于我们学的对象名
class: bean 对象所对应的全限定名 : 包名 + 类名
name: 也是别名, 而且name可以取多个别名

-->
<bean id = "userT" class="com.zwl.User" name="u2 u3, u4; u5">
<property name="name" value=""/>
</bean>

导入

import一般用于团队开发使用,可以将多个配置文件导入合并成一个

applicationContext.xml

1
2
<import resource="beans1.xml"/>
<import resource="beans2.xml"/>

依赖注入

构造器注入

见前面constructor-tag

Set方式注入[重点]

  • 依赖注入:Set注入
    • 依赖:bean对象的创建依赖于容器
    • 注入:bean对象中的所有属性,由容器来注入
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
66
67
<?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">

<bean id="address" class="com.zwl.Address">
<property name="address" value="山西"/>
</bean>
<bean id="name" class="com.zwl.User">
<!--普通值注入, value-->
<property name="name" value="zwl"/>

<!-- Bean注入,ref-->
<property name="address" ref="address"/>

<!--数组-->
<property name="books">
<array>
<value>红楼梦</value>
<value>西游记</value>
<value>水浒传</value>
<value>三国演义</value>
</array>
</property>

<!--List-->
<property name="hobbies">
<list>
<value>吃饭</value>
<value>睡觉</value>
<value>打豆豆</value>
</list>
</property>
<!--Map-->
<property name="card">
<map>
<entry key="身份证" value="111111222222223333"/>
<entry key="银行卡" value="132132132132132132123"/>
</map>
</property>

<!--Set-->
<property name="games">
<set>
<value>LOL</value>
<value>COC</value>
<value>BOB</value>
</set>
</property>

<!--null-->
<property name="wife">
<null/>
</property>

<!--Properties-->
<property name="info">
<props>
<prop key="学号">2020091203027</prop>
<prop key="性别"></prop>
<prop key="username">Polaris6G</prop>
<prop key="password">123456</prop>
</props>
</property>
</bean>
</beans>

拓展方式注入

我们可以使用p命名和c命名空间进行注入:

1
2
3
4
5
6
7
8
9
10
11
12
13
<?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
http://www.springframework.org/schema/beans/spring-beans.xsd">

<bean id="name" class="com.zwl.User" p:name="haha"/>

<bean id="address" class="com.zwl.Address" c:address="山西"/>

</beans>

Bean的作用域

  1. 单例模式:singleton(默认机制)
1
<bean id="name" class="com.zwl.User" p:name="haha" scope="singleton"/>
1
2
3
User user = (User) context.getBean("name");
User user2 = (User) context.getBean("name");
System.out.println(user == user2);//true
  1. 原型模式:每次从容器中get的时候,都会产生一个新对象!
1
<bean id="address" class="com.zwl.Address" c:address="山西" scope="prototype"/>
1
2
3
Address address = (Address) context.getBean("address");
Address address2 = (Address) context.getBean("address");
System.out.println(address == address2);//false
  1. 其余的request、session、application,这些只能在web开发中使用到

Bean的自动装配

  • 自动装配是Spring满足bean依赖一种方式
  • Spring会在上下文中自动寻找,并自动给bean装配属性!

在Spring中有三种装配的方式

  1. 在xml中显式配置
  2. 在java中显式配置
  3. 隐式自动装配bean(重要)

自动装配:

1
2
3
4
5
6
7
8
9
<bean id="cat" class="com.zwl.pojo.Cat"/>
<bean id="dog" class="com.zwl.pojo.Dog"/>

<!--
byName: 会自动在容器上下文中查找,和自己对象set方法后面的值对应的beanId
byType: 会自动在容器上下文中查找,和自己对象属性类型相同的bean!
-->
<bean id="people" class="com.kuang.pojo.People" autowire="byName">
</bean>
1
2
3
4
5
6
7
8
9
<bean class="com.zwl.pojo.Cat"/>
<bean class="com.zwl.pojo.Dog"/>

<!--
byName: 会自动在容器上下文中查找,和自己对象set方法后面的值对应的beanId
byType: 会自动在容器上下文中查找,和自己对象属性类型相同的bean!
-->
<bean id="people" class="com.kuang.pojo.People" autowire="byType">
</bean>

小结:

  • byName的时候,需要保证所有bean的id唯一,并且这个bean需要和自动注入的属性的set方法值一致
  • byType的时候,需要保证所有bean的class唯一,并且这个bean需要和自动注入的属性的类型一致

使用注解实现自动装配

jdk1.5支持的注解,Spring2.5就支持注解了

要使用注解须知:

  1. 导入约束 context约束
  2. 配置注解的支持:context:annotation-config/
1
2
3
4
5
6
7
8
9
10
11
12
<?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>

@AutoWired

直接在属性上使用即可,也可以在constuctor、set方式上使用

使用Autowired我们可以不用编写Set方法了,前提是这个自动装配的属性在IOC(Spring)容器中存在,并且首先符合byType,或符合byName

1
@Nullable 注解可以使用在方法、属性、参数上,分别表示方法返回可以为空、属性值可以为空、参数值可以为空
1
2
3
public @interface Autowired {
boolean required() default true;
}

测试代码

1
2
3
4
5
6
7
8
public class People{
//如果显式定义了Autowired的required属性为false,说明这个对象可以为null,否则不允许为空
@Autowired(required = false)
private Cat cat;
@Autowired
private Dog dog;
private String name;
}

如果@Autowired自动装配的环境比较复杂,自动装配无法通过一个注解【@Autowired】完成的时候,我们可以使用@Qualifier(value=”xxx”)去配置@Autowire的使用,指定一个唯一的bean对象注入!

1
2
3
4
5
6
7
8
9
10
public class People{
//如果显式定义了Autowired的required属性为false,说明这个对象可以为null,否则不允许为空
@Autowired
@Qualifier(value="cat111")
private Cat cat;
@Autowired
@Qualifier(value="dog222")
private Dog dog;
private String name;
}

@Resource注解

1
2
3
4
5
6
7
8
public class People{
@Resource(name="cat2")
private Cat cat;

@Resource(name="dog2")
private Dog dog;
private String name;
}

小结:

@Resource和@Autowired的区别:

  • 都是用来自动装配的,都可以放在属性字段上
  • @Autowired默认通过byType的方式实现,如果找不到则通过byName
  • @Resource默认通过byName的方式实现,如果找不到名字则通过byType,如果两个都找不到的情况下,就报错
  • 执行顺序不同

使用注解开发

在Spring4之后,要使用注解开发,必须要保证aop的包导入了

  1. bean

    • @Component:组件、放到类上,说明这个类被Spring管理了,这是一个bean
  2. 属性如何注入

    @Value

    1
    2
    3
    4
    5
    public class User {
    // 相当于<property name="address" value="山西"/>
    @Value("山西")
    private Address address;
    }
    1
    2
    3
    4
    @Value("山东")
    public void setAddress(Address address) {
    this.address = address;
    }
  3. 衍生的注解

    @Component有几个衍生注解,我们在web开发中,会按照mvc三层架构分层

    • dao @Repository
    • service @Service
    • controller @Controller

    这四个注解功能都是一样的,都是代表将某个类将某个类注册到Spring中,装配Bean

  4. 自动装配

    • @Autowired:自动装配通过类型、名字

      如果Autowired不能唯一自动装配上属性,则需要通过@Qualifier(value=”xxx”)

    • @Nullable:字段标记了这个注解,说明这个字段可以为null

    • @Resource:自动装配通过名字、类型

  5. 作用域

    @Scope

    1
    2
    @Scope("singleton")//单例模式
    @Scope("prototype")//原型模式
  6. 小结

    xml与注解:

    • xml更加万能,适用于任何场合!维护简单方便
    • 注解 不是自己的类使用不了,维护相对复杂

    xml与注解的最佳实践:

    • xml用来管理bean
    • 注解只负责完成属性的注入
    • 我们在使用的过程中,只需要注意一个问题:必须让注解生效,需要开启注解的支持
  7. 使用Java的方式配置Spring

    Configuration类中的方法成员变量是@Value注解,方法上的注解是@Bean

    Component类中的方法和成员变量没有任何限制

    现在完全不适用Spring的xml配置,全权交给Java来做

    JavaConfig是Spring的一个子项目,在Spring 4之后,成为了核心功能

    实体类:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    @Component//可不加
    public class User {
    private String name;

    public String getName(){
    return name;
    }

    @Value("zwl")
    public void setName(String name){
    this.name = name;
    }

    @Override
    public String toString() {
    return "User{" +
    "name='" + name + '\'' +
    '}';
    }
    }

    配置类:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    package com.zwl.config;

    import com.zwl.User;
    import org.springframework.context.annotation.Bean;
    import org.springframework.context.annotation.Configuration;

    @Configuration//可不加,相当于beans标签
    @ComponentScan("com.zwl")//可不加
    @Import(zwlConfig2.class)//同import用法,可联合多个配置类
    @ImportResource("applicationContext-configuration.xml")//可联合xml文件
    public class zwlConfig {

    //注册一个bean,就相当于在beans.xml中的bean标签
    //这里方法的名字,就相当于bean标签中的id属性
    //方法的返回值就相当于bean标签的class属性
    @Bean
    public User getUser(){
    return new User();//就是返回要注入到bean的对象
    }
    }

    测试类:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    import com.zwl.User;
    import com.zwl.config.zwlConfig;
    import org.springframework.context.annotation.AnnotationConfigApplicationContext;

    public class MyTest {
    public static void main(String[] args) {
    //注解配置类
    //如果完全使用了配置类方式去做,我们就智能通过AnnotationConfig上下文来获取容器,通过配置类的class对象加载
    AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(zwlConfig.class);
    User user = context.getBean("getUser", User.class);
    System.out.println(user);
    }
    }

    这种纯Java的配置方式,在SpringBoot中随处可见!

代理模式

为什么要学习代理模式:

因为这就是Spring AOP的底层

【Spring AOP 和 Spring MVC】

代理模式的分类:

  • 静态代理
  • 动态代理

静态代理

角色分析:

  • 抽象角色:一般会使用接口或者抽象类来解决
  • 真实角色:被代理的角色
  • 代理角色:代理真实角色,代理真实角色后,我们一般会做一些附属操作
  • 客户:访问代理对象的人

代理模式的好处:

  • 可以使真实角色的操作更加纯粹,不用去关注一些公共的业务
  • 公共业务就交给代理角色,实现了业务的分工
  • 公共业务发生扩展的时候,方便集中管理

缺点:

  • 一个真实角色就会产生一个代理角色,代码量会翻倍,开发效率会变低

关于AOP:

动态代理

  • 动态代理和静态代理角色一样
  • 动态代理的代理类是动态生成和的,不是我们直接写好的
  • 动态代理分为两大类:基于接口的动态代理、基于类的动态代理
    • 基于接口—JDK动态代理【学习的内容】
    • 基于类:cglib
    • java字节码实现:JAVAssist

需要了解两个类:Proxy:代理, InvocationHandler:调用处理程序

  • Proxy:生成动态代理实例

    1
    Foo f = (Foo) Proxy.newProxyInstance(Foo.class.getClassLoader(), new Class<?>[] { Foo.class }, handler);
  • InvocationHandler:调用处理程序并返回结果(实现invoke)

    1
    invoke(Object proxy, Method method, Object[] args)

通用栗子:

ProxyInvokeHandler.class:

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
package demo02;

import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;

public class ProxyInvokeHandler 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 {
log(method.getName());
return method.invoke(target, args);
}

public void log(String msg){
System.out.println("采用了" + msg + "方法");
}

}

UserServiceImpl.class:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package demo02;

public class UserServiceImpl implements UserService{
public void add() {
System.out.println("增加一个用户");
}

public void update() {
System.out.println("修改一个用户");
}

public void delete() {
System.out.println("删除一个用户");
}

public void query() {
System.out.println("查询一个用户");
}
}

Main.class

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package demo02;

public class Client {
public static void main(String[] args) {
//真实角色
UserServiceImpl userService = new UserServiceImpl();

//代理角色
ProxyInvokeHandler pih = new ProxyInvokeHandler();

//设置要代理的对象
pih.setTarget(userService);

//动态生成代理类
UserService proxy = (UserService) pih.getProxy();

//可以通过代理调用方法啦
proxy.add();
}
}

动态代理的好处:

  • 可以使真实角色的操作更加纯粹,不用去关注一些公共的业务
  • 公共业务就交给代理角色,实现了业务的分工
  • 公共业务发生扩展的时候,方便集中管理
  • 一个动态代理类代理的是一个接口,一般就是对应的一类业务
  • 一个动态代理类可以代理多个类,只要是实现了同一个接口即可

AOP

AOP(Aspect Oriented Programming)意为:面向切面编程,通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术。利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。

AOP在Spring中的作用

使用Spring实现AOP

【重点】使用AOP,需要导入依赖包

1
2
3
4
5
6
7
8
9
10
11
<!--https://mvnrepository.com/artifact/org.aspectj/aspectjweaver-->
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.9.4</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
<version>5.2.12.RELEASE</version>
</dependency>

方式一:使用Spring的API接口

applicationContext.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
<?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
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd">

<!--注册bean-->
<bean id="userService" class="com.zwl.service.UserServiceImpl"/>
<bean id="beforeLog" class="com.zwl.log.BeforeLog"/>
<bean id="afterLog" class="com.zwl.log.AfterLog"/>

<!--方式一:使用原生Spring API接口-->
<!--配置aop:导入aop的约束-->
<aop:config>
<!-- 切入点:expression:表达式:返回类型(*表示所有返回类型) 要执行的位置(包名 类名 方法名) 参数 (..)代表可以有不一样的参数)-->
<aop:pointcut id="pointcut" expression="execution(* com.zwl.service.UserServiceImpl.*(..))"/>

<!--执行环绕增加-->
<aop:advisor advice-ref="beforeLog" pointcut-ref="pointcut"/>
<aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/>
</aop:config>

</beans>

BeforeLog.class

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.zwl.log;

import org.springframework.aop.MethodBeforeAdvice;

import java.lang.reflect.Method;

public class BeforeLog implements MethodBeforeAdvice {
/**
* @param method 要执行的目标对象的方法
* @param args 参数
* @param target 目标对象
* @throws Throwable
*/
public void before(Method method, Object[] args, Object target) throws Throwable {
System.out.println(target.getClass().getName()+"的"+method.getName()+"被执行了");
}
}

AfterLog.class

1
2
3
4
5
6
7
8
9
10
11
12
package com.zwl.log;

import org.springframework.aop.AfterReturningAdvice;

import java.lang.reflect.Method;

public class AfterLog implements AfterReturningAdvice {

public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable {
System.out.println("执行了"+method.getName()+"方法,返回结果为"+returnValue);
}
}

MyTest.class

1
2
3
4
5
6
7
8
9
10
11
12
13
import com.zwl.service.UserService;
import com.zwl.service.UserServiceImpl;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MyTest {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
//动态代理的是接口
UserService userService = context.getBean("userService", UserService.class);
userService.query();
}
}

方式二:自定义类来实现AOP

aop:aspect

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
<?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
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd">

<!--注册bean-->
<bean id="userService" class="com.zwl.service.UserServiceImpl"/>


<!--方式二: 自定义类 -->
<bean id="log" class="com.zwl.log.Log"/>

<aop:config>
<!-- 自定义切面 ref 要引用的类 -->
<aop:aspect ref="log">
<aop:pointcut id="point" expression="execution(* com.zwl.service.UserServiceImpl.*(..))"/>
<!-- 通知 -->
<aop:before method="before" pointcut-ref="point"/>
<aop:after method="after" pointcut-ref="point"/>
</aop:aspect>
<!-- 切入点 -->
</aop:config>

</beans>

方式三:使用注解实现

AnnoPointCut.class

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
package com.zwl.annotation;

//方式三:使用注解方式实现AOP


import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.*;

@Aspect //标注这个类是一个切面
public class AnnoPointCut {

@Before("execution(* com.zwl.service.UserServiceImpl.*(..))")
public void before(){
System.out.println("========方法执行前==========");
}

@After("execution(* com.zwl.service.UserServiceImpl.*(..))")
public void after(){
System.out.println("========方法执行后==========");
}

@AfterReturning("execution(* com.zwl.service.UserServiceImpl.*(..))")
public void afterReturning(){
System.out.println("afterReturning here");
}

//在环绕增强中,我们可以给定一个参数ProceedingJoinPoint连接点,代表我们要获取处理切入的点
@Around("execution(* com.zwl.service.UserServiceImpl.*(..))")
public void around(ProceedingJoinPoint jp) throws Throwable {
System.out.println("环绕前");

Object proceed = jp.proceed();//执行方法

System.out.println("环绕后");

System.out.println(proceed);
}

}

applicationContext.xml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd">

<!--注册bean-->
<bean id="userService" class="com.zwl.service.UserServiceImpl"/>

<!-- 方式三:使用注解 -->
<bean id="annotationPointCut" class="com.zwl.annotation.AnnoPointCut"/>
<!-- 开启注解支持 proxy-target-class:false(默认):JDK动态代理 true:cglib-->
<aop:aspectj-autoproxy proxy-target-class="false"/>

</beans>

执行结果:

整合Mybatis

步骤:

  1. 导入相关jar包

    • junit
    • mybatis
    • mysql数据库
    • spring先关的
    • aop织入
    • mybatis-spring【new】

    pom.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
    66
    67
    68
    <?xml version="1.0" encoding="UTF-8"?>
    <project xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>org.example</groupId>
    <artifactId>spring-07-mybatis</artifactId>
    <version>1.0-SNAPSHOT</version>

    <dependencies>
    <dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>4.13.2</version>
    <scope>test</scope>
    </dependency>
    <dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
    <version>8.0.22</version>
    </dependency>
    <dependency>
    <groupId>org.mybatis</groupId>
    <artifactId>mybatis</artifactId>
    <version>3.4.6</version>
    </dependency>
    <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-webmvc</artifactId>
    <version>5.2.12.RELEASE</version>
    </dependency>
    <!--Spring操作数据库的话,还需要一个Spring-jdbc-->
    <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-jdbc</artifactId>
    <version>5.2.12.RELEASE</version>
    </dependency>
    <dependency>
    <groupId>org.aspectj</groupId>
    <artifactId>aspectjweaver</artifactId>
    <version>1.9.6</version>
    </dependency>
    <dependency>
    <groupId>org.mybatis</groupId>
    <artifactId>mybatis-spring</artifactId>
    <version>2.0.2</version>
    </dependency>
    <dependency>
    <groupId>org.projectlombok</groupId>
    <artifactId>lombok</artifactId>
    <version>1.18.16</version>
    </dependency>
    </dependencies>

    <build>
    <resources>
    <resource>
    <directory>src/main/java</directory>
    <includes>
    <include>**/*.xml</include>
    </includes>
    <filtering>true</filtering>
    </resource>
    </resources>
    </build>

    </project>
  2. 编写配置文件

  3. 测试

回忆mybatis

  1. 编写实体类

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    package com.zwl.pojo;

    import lombok.Data;

    @Data
    public class User {
    private int id;
    private String name;
    private String pwd;
    }
  2. 编写核心配置文件(mybatis-config.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
    <?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核心配置文件-->
    <configuration><!-- 配置 -->
    <!--别名-->
    <typeAliases>
    <package name="com.zwl.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&amp;useUnicode=true&amp;characterEncoding=UTF-8&amp;serverTimezone=UTC"/>
    <property name="username" value="root"/>
    <property name="password" value="Polaris6G"/>
    </dataSource>
    </environment>
    </environments>

    <mappers>
    <mapper class="com.zwl.mapper.UserMapper"/>
    </mappers>

    </configuration>
  3. 编写接口

    1
    2
    3
    4
    5
    6
    7
    8
    9
    package com.zwl.mapper;

    import com.zwl.pojo.User;

    import java.util.List;

    public interface UserMapper {
    List<User> selectUser();
    }
  4. 编写Mapper.xml

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    <?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.zwl.mapper.UserMapper">
    <select id="selectUser" resultType="user">
    select * from mybatis.user;
    </select>
    </mapper>
  5. 测试

    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
    import com.zwl.mapper.UserMapper;
    import com.zwl.pojo.User;
    import org.apache.ibatis.io.Resources;
    import org.apache.ibatis.session.SqlSession;
    import org.apache.ibatis.session.SqlSessionFactory;
    import org.apache.ibatis.session.SqlSessionFactoryBuilder;

    import java.io.IOException;
    import java.io.InputStream;
    import java.util.List;

    public class MyTest {
    public static void main(String[] args) throws IOException {
    String resource = "mybatis-config.xml";
    InputStream in = Resources.getResourceAsStream(resource);

    SqlSessionFactory sessionFactory = new SqlSessionFactoryBuilder().build(in);
    SqlSession sqlSession = sessionFactory.openSession(true);

    UserMapper mapper = sqlSession.getMapper(UserMapper.class);
    List<User> userList = mapper.selectUser();

    for(User user : userList){
    System.out.println(user);
    }
    }
    }

Spring-Mybatis

  1. 编写数据源

spring-dao.xml

1
2
3
4
5
6
7
<!-- spring来管理数据源 -->
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.cj.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost:3306/mybatis?useSSL=true&amp;useUnicode=true&amp;characterEncoding=UTF-8&amp;serverTimezone=UTC"/>
<property name="password" value="Polaris6G"/>
<property name="username" value="root"/>
</bean>
  1. sqlSessionFactory

spring-dao.xml

1
2
3
4
5
6
7
<!--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/zwl/mapper/*.xml"/>
</bean>
  1. sqlSessionTemplate
1
2
3
4
5
<!--SqlSessionTemplate:就是我们使用的sqlSession-->
<bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
<!--只能使用构造器注入sqlSessionFactory,因为没有set方法-->
<constructor-arg index="0" ref="sqlSessionFactory"/>
</bean>
  1. 需要给接口加实现类
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.zwl.mapper;

import com.zwl.pojo.User;
import org.mybatis.spring.SqlSessionTemplate;
import java.util.List;

public 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();
}
}
  1. 将自己写的实现类,注入到Spring中,测试使用即可

application.xml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd">

<import resource="spring-dao.xml"/>

<bean id="userMapper" class="com.zwl.mapper.UserMapperImpl">
<property name="sqlSession" ref="sqlSession"/>
</bean>

<bean id="userMapper2" class="com.zwl.mapper.UserMapperImpl2">
<property name="sqlSessionFactory" ref="sqlSessionFactory"/>
</bean>

</beans>

测试类

1
2
3
4
5
6
7
8
9
10
public class MyTest {
public static void main(String[] args) throws IOException {
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
UserMapper userMapper = context.getBean("userMapper", UserMapper.class);
List<User> userList = userMapper.selectUser();
for(User user : userList){
System.out.println(user);
}
}
}

方法二(引入SqlSessionDaoSupport):

1
2
3
4
5
public class UserMapperImpl2 extends SqlSessionDaoSupport implements UserMapper {
public List<User> selectUser() {
return getSqlSession().getMapper(UserMapper.class).selectUser();
}
}

声明式事务

事务:

  • 要么都成功,要么都失败
  • 事务在项目开发中,十分的重要,设计到数据的一致性问题,不能马虎
  • 确保完整性和一致性

事务的ACID原则:

  • 原子性(Atomicity):一个事务(transaction)中的所有操作,要么全部完成,要么全部不完成,不会结束在中间某个环节。事务在执行过程中发生错误,会被恢复(Rollback)到事务开始前的状态,就像这个事务从来没有执行过一样。
  • 一致性(Consistency):在事务开始之前和事务结束以后,数据库的完整性没有被破坏。这表示写入的资料必须完全符合所有的预设规则,这包含资料的精确度、串联性以及后续数据库可以自发性地完成预定的工作。
  • 隔离性(Isolation):数据库允许多个并发事务同时对其数据进行读写和修改的能力,隔离性可以防止多个事务并发执行时由于交叉执行而导致数据的不一致。事务隔离分为不同级别,包括读未提交(Read uncommitted)、读提交(read committed)、可重复读(repeatable read)和串行化(Serializable)。
  • 持久性(Durability):事务处理结束后,对数据的修改就是永久的,即便系统故障也不会丢失。

spring中的事务管理

  • 声明式事务:AOP

    横切方式

  • 编程式事务:需要在代码中进行事务的管理(try-catch)

    1
    2
    3
    4
    5
    6
    7
    8
    9
    TransactionStatus txStatus =
    transactionManager.getTransaction(new DefaultTransactionDefinition());
    try {
    userMapper.insertUser(user);
    } catch (Exception e) {
    transactionManager.rollback(txStatus);
    throw e;
    }
    transactionManager.commit(txStatus);