Spring框架笔记整理(Spring5+maven+IntelliJ IDEA+JDK 1.8 version16)

目录

1.Spring框架

1.1概述

1.2 组成

2.IOC

2.1 理解导入

2.2 IOC 本质

2.3 例子 HelloSpring

2.4 IOC创建对象的方式

3.Spring配置说明

3.1 别名

3.2 bean配置

3.3 import

4.DI依赖注入

4.1 构造器注入

4.2 Set方式注入【重要】

4.3扩展方式注入

带有 p 命名空间的 XML 快捷方式

带有 c 命名空间的 XML 快捷方式

4.4.bean Scops 作用域

4.4.1 单例 singleton

4.4.2 原型模式 prototype

4.4.3 其他

5.Bean 的自动装配

5.1 测试

5.2 byName自动装配

5.3 byType自动装配

5.4 使用注解实现自动装配 @Autowired

6.使用注解开发

6.1 bean

6.2 属性如何注入

6.3 衍生的注解

6.4 自动装配置

6.5 作用域

6.6 小结

7.实现 javaconfig 实现配置

8.代理模式

8.1 静态代理

8.2 动态代理

9.AOP

9.1 什么是AOP

9.2 AOP在Spring中的作用

9.3 使用Spring实现AOP

9.3.1 方法一:使用Spring 的API 接口

9.3.2 方法二 : 使用自定义类实现

9.2.3 方法三:使用注解方式

10 整合 Mybatis

10.1 方式一 使用mybatis-spring

10.2 方式二:使用SqlSessionDaoSupport

11 声明式事务

11.1 回顾

11.2 mybatis-spring 中 Transactions


 ​说明:该笔记通过该网址【狂神说Java】Spring5最新完整教程IDEA版通俗易懂_哔哩哔哩_bilibili

github : 练手  https://github.com/abbywei123/spring-study-2021

1.Spring框架

1.1概述

1.Spring 是轻量级的来源的JavaEE框架

2.Spring 可以解决企业开发的复杂性

3.Spring 有两个核心部分:IOC和AOP

(1)IOC:控制反转,把创建对象的过程交给Spring进行管理

(2)Aop:面向切面,不修改源代码的情况下进行功能增强

4.Spring 特点

(1)方便解耦,简化开发

(2)Aop 编程支持

(3)方便程序测试

(4)方便和其他框架整合

(5)降低api开发难度

(6)方便进行事务操作

5.

官方文档 Spring Framework Overview

下载 JFrog

<!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-webmvc</artifactId>
    <version>5.2.17.RELEASE</version>
</dependency>
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-jdbc</artifactId>
    <version>5.2.17.RELEASE</version>
</dependency>

1.2 组成

## 1.3扩展

 

  • Spring Boot

    • 一个快速开发的脚手架

    • 基于SpringBoot可以快速的开发单个微服务

    • 约定大于配置

  • Spring Cloud

    • 基于SpringBoot实现的

弊端,Spring发展太久之后,违背了原来的理念,配置十分繁琐

2.IOC

2.1 理解导入

首先来看一组代码对比

   
private UserDao userDao=new UserDaoOracleImpl();
​
​
    @Override
    public void getUser() {
        userDao.getUser();
    }
    
    test
     UserService userService=new UserServiceImpl();
        
        userService.getUser();
   private UserDao userDao;
​
    //利用set进行动态实现值得注入
    public void setUserDao(UserDao userDao){
        this.userDao=userDao;
    }
    @Override
    public void getUser() {
        userDao.getUser();
    }
    
    test
     UserService userService=new UserServiceImpl();
     ((UserServiceImpl)userService).setUserDao(new UserDaoImpl());
     //((UserServiceImpl)userService).setUserDao(new UserDaoOracleImpl());
     //((UserServiceImpl)userService).setUserDao(new UerDaoMysqlImpl());

之前,程序是主动创建对象

使用set注入后,程序不再具有主动性,而变成了被动的接受对象

系统的耦合性大大降低,是程序员更加专注于业务的实现上

以上是IOC的原型

2.2 IOC 本质

控制反转IOC,是一种设计思想,DI(依赖注入)是实现IOC的一种方法。没有IOC的程序中,我们使用面向对象编程,对象的创建与对象间的依赖关系完全硬编码在程序中,对象的创建由程序自己控制控制反转后将对象的创建转移给第三方。

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

2.3 例子 HelloSpring

1.pojo

package com.yw.pojo;
public class Hello {
    private String name;
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public void show(){
        System.out.println("Hello,"+ name );
    }
}

2.配置元数据

创建beans.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">
    <!--bean就是java对象 , 由Spring创建和管理-->
    <bean id="hello" class="com.yw.pojo.Hello">
        <property name="name" value="Spring"/>
    </bean>
</beans>

<bean id="hello" class="com.yw.pojo.Hello">

其中 id 属性,用于标识单个bean定义

class 属性定义bean的类型并使用完全限定的类名

3.实例化一个容器

提供给ApplicationContext构造函数的一个或多个位置路径是资源字符串,允许容器从各种外部资源(例如本地文件系统、Java 等)加载配置元数据CLASSPATH

 //获取Spring的上下文对象
        ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
        //我们的对象现在都在Spring中管理了,我们要使用直接去里面取出来就可以
        Hello hello=(Hello) context.getBean("hello");
        hello.show();

输出

Hello,Spring

2.4 IOC创建对象的方式

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

  2. 如果要使用有参构造方法创建对象

    方式一:下标赋值

 <bean id="hello" class="com.yw.pojo.Hello">
   <constructor-arg index="0" value="..."></constructor-arg>
 </bean>

方式二:通过类型

<bean id="hello" class="com.yw.pojo.Hello">
   <constructor-arg type="java.lang.String" value="..."></constructor-arg>
 </bean>

方式三:直接通过参数名

<bean id="hello" class="com.yw.pojo.Hello">
   <constructor-arg name="name" value="..."></constructor-arg>
 </bean>

总结:在配置文件加载的时候,容器中管理的对象就已经初始化了

3.Spring配置说明

3.1 别名

即重命名,如果添加了别名,我们可以通过别名获取对象

 <alias name="userImpl" alias="userImplalias"></alias>

3.2 bean配置

<?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就是java对象 , 由Spring创建和管理-->
    <bean id="hello" class="com.yw.pojo.Hello" name="h1 h2,h3;h4">
        <property name="name" value="Spring"/>
    </bean>
</beans>

id :bean的唯一标识符,相当于对象名

class:bean 对象所对应的全限类名:包名+类型

name:也是别名 name="h1 h2,h3;h4 可以命名多个

3.3 import

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

  <import resource="..."></import>

4.DI依赖注入

4.1 构造器注入

4.2 Set方式注入【重要】

  • 依赖注入:set注入

    • 依赖:bean 对象的创建依赖于容器

  • 注入:bean对象中的所有属性,有容器来注入

【环境搭配】

  1. 复杂类型

private String address;

    public Address(String address) {
        this.address = address;
    }

    public String getAddress() {
        return address;
    }

    public void setAddress(String address) {
        this.address = address;
    }
}
  1. 真实测试对象

getseter 省略

public class Student {
    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;
  1. beanxml

<?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就是java对象 , 由Spring创建和管理-->
    <bean id="ads" class="com.yw.pojo.Address"></bean>
    <bean id="student" class="com.yw.pojo.Student">
         <!-- 第一种: 普通值注入  value      -->
        <property name="name" value="张三"/>
        <!--        第二种: 对象注入 ref-->
        <property name="address" ref="ads"></property>

        <!--第三种: 数组注入 array       -->
        <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="111111222233334444"></entry>
            </map>
        </property>
        <!--  第五种      set注入-->
        <property name="games">
            <set>
                <value>LoL</value>
                <value>COC</value>
                <value>BOB</value>
            </set>
        </property>
        <!--  第六种      null 注入-->
        <property name="wife">
            <null></null>
        </property>

        <!--  第七种      Properties注入-->
        <property name="info">
            <props>
                <prop key="学号">2015001</prop>
                <prop key="姓名">小米</prop>
                <prop key="username">rose</prop>
            </props>
        </property>
    </bean>
</beans>

  1. 测试类

public 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='null'},
        * books=[红楼梦, 西游记, 水浒传, 三国演义],
        * hobbies=[听歌, 跑步, 看电影],
        * card={身份证=111111222233334444},
        * games=[LoL, COC, BOB],
        * wife='null',
        * info={姓名=小米, 学号=2015001, username=rose}
        * }

         * */
    }

4.3扩展方式注入

带有 p 命名空间的 XML 快捷方式

​
xmlns:p="http://www.springframework.org/schema/p"

  <bean id="user" class="com.yw.pojo.User" p:name="haha"></bean>
​

带有 c 命名空间的 XML 快捷方式

前提:适用于有参构造器

xmlns:c="http://www.springframework.org/schema/c"

public class User {
    private String name;

    public User() {

    }

    public User(String name) {
        this.name = name;
    }

 <bean id="user2" class="com.yw.pojo.User" c:name="ccc"></bean>

注意点:p命名 c命名空间不能直接使用,需要导入xml约束

4.4.bean Scops 作用域

官网

4.4.1 单例 singleton

 <bean id="user2" class="com.yw.pojo.User" c:name="ccc" scope="singleton"></bean>

配置默认的是单例模式

4.4.2 原型模式 prototype

<bean id="user2" class="com.yw.pojo.User" c:name="ccc" scope="prototype"></bean>

每次从容器get的时候,都会产生一起新的对象

4.4.3 其他

其中 request session application 这些只能在web开发使用到

5.Bean 的自动装配

  • 自动装配是Spring满足bean依赖一种方式

  • Spring会在上下文中自动寻找,并自动给bean装配属性

在Spring中三种装配方式

  1. 在xml中显示的配置

  2. 在Java中显示配置

  3. 隐式的自动装配bean【重要】

5.1 测试

实体类

public class Cat {
    public void shout(){
        System.out.println("miaomiaomiao");
    }
}
public class Dog {
    public void shout(){
        System.out.println("wangwangwang");
    }
}
public class People {
    private String name;
    private Cat cat;
    private Dog dog;

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">
    <!--bean就是java对象 , 由Spring创建和管理-->
    <bean id="dog" class="com.yw.pojo.Dog"></bean>
    <bean id="cat" class="com.yw.pojo.Cat"></bean>
    <bean id="people" class="com.yw.pojo.People" autowire="byName">
        <property name="name" value="tutu"/>
<!--        <property name="cat" ref="cat"/>-->
<!--        <property name="dog" ref="dog"/>-->
    </bean>
</beans>

5.2 byName自动装配

<bean id="people" class="com.yw.pojo.People" autowire="byName">

byName 会在容器上下文中查找,和自己对象set方法后面的值对应 bean id

5.3 byType自动装配

<bean id="people" class="com.yw.pojo.People" autowire="byType">

byName 会在容器上下文中查找,和自己对象属性类型相同的bean

小结:

  • byName的时候,需要保证所有的bean的i唯一,并且这个备案需要和自动注入的属性的set方法的值一致

  • byType的时候,需要保证所有的bean的class唯一,并且这个bean需要和自动注入的属性类型一直

5.4 使用注解实现自动装配 @Autowired

jdk1.5支持注解,Spring从2.5支持的注解

要使用注解须知

  1. 导入约束 context

  2. 配置注解的支持 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>

3.代码变化

public class People {
    private String name;
    @Autowired
    private Cat cat;
    @Autowired
    private Dog dog;

xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:context="http://www.springframework.org/schema/context"
       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
                           http://www.springframework.org/schema/context
                           https://www.springframework.org/schema/context/spring-context.xsd">
    <context:annotation-config/>
    <!--bean就是java对象 , 由Spring创建和管理-->
    <bean id="dog" class="com.yw.pojo.Dog"></bean>
    <bean id="cat" class="com.yw.pojo.Cat"></bean>
    <bean id="people" class="com.yw.pojo.People" ></bean>
</beans>

总结:

@Autowired

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

  • 使用Autowired 我们可以不用编写set方法了,前提是你这个自动装配属性在IOC(Spring)容器中存在,且符合名字byname

  • @Qualifier : 如果配置的定义的对象实例有多个,可以使用@Qualifier(value="...")去匹配beanid

  • java 注解 @Resource 会去配置文件中自动匹配,先根据name 再根据类型

@Autowired 和 @Resource 区别

  • 都是用来自动装配的,都可以放在属性字段上

  • @Autowired 通过byType的方式实现,而且必须要求这个对象存在【常用】

  • @Resource 默认通过byname 的方式实现,如果找不到名字,则通过byType实现【常用】

  • 执行顺序不同:

6.使用注解开发

6.1 bean

在Spring4之后开发,必须保证aop的包导入了

使用注解需要导入context约束,增加注解的支持

注解 @Component

例子

xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:context="http://www.springframework.org/schema/context"
       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
                           http://www.springframework.org/schema/context
                           https://www.springframework.org/schema/context/spring-context.xsd">

    <!-- 指定要扫描的包,这个包下的注解就会生效   -->
    <context:component-scan base-package="com.yw.pojo"/>
    <context:annotation-config/>
</beans>

bean

//等价于 <bean id="user" class="com.yw.pojo.User"></bean>
@Component  //组件
public class User {
    public String name="tutu";

}

测试

public class MyTest {
    @Test
    public void test1(){
        ApplicationContext context=new ClassPathXmlApplicationContext("applicationContext.xml");
        User user=(User) context.getBean("user");
        System.out.println(user.name);
    }
}

小结

@Component 组件,放在类上,说明这个类被Spring管理了。

6.2 属性如何注入

使用注解 @Value("")

//等价于 <bean id="user" class="com.yw.pojo.User"></bean>
@Component  //组件
public class User {
    //相当于 <property name="name" value="tutu"/>
    @Value("tutu")
    public String name;

}

或者

//等价于 <bean id="user" class="com.yw.pojo.User"></bean>
@Component  //组件
public class User {

    public String name;

    //相当于 <property name="name" value="tutu"/>
    @Value("tutu")
    public void setName(String name) {
        this.name = name;
    }
}

6.3 衍生的注解

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

  • dao [@Repository]

  • service [@Service]

  • controller [@Controller]

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

6.4 自动装配置

@Autowried

6.5 作用域

@Scop("singleton")

@Scop("prototype")

6.6 小结

xml 与 注解 :

  • xml 更加万能,适用于任何场合,维护简单方便

  • 注解 不是自己的类用不了,维护相对复杂

xml 与 注解最佳实践 :

  • xml用来管理bean

  • 注解只负责属性的注入

  • 我们在使用注解,需要开启注解的支持

 <context:component-scan base-package="com.yw.pojo"/>
    <context:annotation-config/>

7.实现 javaconfig 实现配置

我们现在完全不使用Spring 的 xml 配置了,全权交给java 来做

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

代码说明

实体类

package com.yw.pojo;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

@Component
public class User {
    @Value("tutu1")
    private String name;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

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

配置类

package com.yw.config;

import com.yw.pojo.User;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;

//这个也会被Spring托管,注册到容器中,因为它本身就是一个@Component
//@Configuration代表这是一个配置类,就和我们之前看的bean.xml
@Configuration
@ComponentScan("com.yw.pojo")
@Import(AppConfig2.class)
public class AppConfig {

    //注册一个bean 就相当于我们之前写的一个bean标签
    //这个方法的名字 就相当于bean标签的id 属性
    //这个方法的返回值 就相当于bean标签的class属性
    @Bean
    public User getUser(){
        return new User();
    }
}

测试

import com.yw.config.AppConfig;
import com.yw.pojo.User;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;

public class MyTest {
    public static void main(String[] args) {
        //如果完全使用了配置类去做,我们就只能通过AnnotationConfig 上下文获取容器
        ApplicationContext context=new AnnotationConfigApplicationContext(AppConfig.class);
        User user=(User) context.getBean("getUser");
        System.out.println(user.getName());
    }
}

这种纯java的配置方式,在Spring Boot中 随处可见

8.代理模式

为什么要学习代理模式?因为这就是SpringAOP的底层

代理模式的分类:

  • 静态代理

  • 动态代理

8.1 静态代理

角色分析:

  • 抽象角色:一般会使用接口或者抽象类来解决

  • 真实角色:被代理的角色

  • 代理角色:代理真实角色,代理真实角色后,我们一般会做一些附属操作

代码步骤

  1. 接口

//租房
public interface Rent {
    void rent();
}
  1. 真实角色

//房东
public class Host implements Rent{
    @Override
    public void rent() {
        System.out.println("房东要出租");
    }
}
  1. 代理角色

package com.yw.demo1;

//代理
public class Proxy implements Rent{
    private Host host;

    public Proxy(){

    }
    public Proxy(Host host){
        this.host=host;
    }

    @Override
    public void rent() {
        seeHouse();
        host.rent();
        hetong();
        fare();
    }

    //看房
    public void seeHouse() {
        System.out.println("中介带你看房");
    }

    //瘦中介费
    public void fare() {
        System.out.println("中介收费");
    }
    //签租赁合同
    public void hetong() {
        System.out.println("签租赁合同");
    }
}
  1. 客户端访问代理角色

package com.yw.demo1;

public class Client {
    public static void main(String[] args) {
        Host host=new Host();
        //host.rent();
        //代理 中介帮房东租房 但是代理角色一般会有一些附属操作
        Proxy proxy=new Proxy(host);

        //你不用面对房东,直接找中介租房即可
        proxy.rent();
    }
}

代理模式的好处:

  • 可以说使真实角色的操作更加纯粹,不用去关注一些公共的业务

  • 公共业务交给代理角色,实现业务的分工

  • 公共业务发生扩展的时候,方便集中管理

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

再举一个例子进一步理解

给一个业务新增一个日志记录功能

  1. 接口

public interface UserService {
    void add();
    void delete();
    void update();
    void query();
}
  1. 真实角色

package com.yw.demo2;

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

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

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

    @Override
    public void query() {
        System.out.println("查询了一个用户");
    }
}
  1. 代理角色

package com.yw.demo2;

public class UserServiceProxy implements UserService{
    USerServiceImpl uSerService;

    public void setuSerService(USerServiceImpl uSerService) {
        this.uSerService = uSerService;
    }

    @Override
    public void add() {
        uSerService.add();
        log("add");
    }

    @Override
    public void delete() {
        uSerService.delete();
        log("delete");
    }

    @Override
    public void update() {
        uSerService.update();
        log("update");
    }

    @Override
    public void query() {
        uSerService.query();
        log("query");
    }

    //日志方法
    public void log(String msg){
        System.out.println("[loging]使用了"+msg+"方法");
    }
}
  1. 客户端访问代理角色

package com.yw.demo2;

public class Client {
    public static void main(String[] args) {
        USerServiceImpl userService=new USerServiceImpl();
        UserServiceProxy proxy=new UserServiceProxy();
        proxy.setuSerService(userService);
        proxy.add();
    }
}
增加了一个用户
[loging]使用了add方法

8.2 动态代理

  • 动态代理和静态代理角色一样

  • 动态代理的代理类是动态生成的,不是我们直接写好的

  • 动态代理分为两大类:基于接口的动态代理,基于类的动态代理

    • 基于接口---JDK动态代理

    • 基于类:cglib

    • java字节码实现:javassist

需要了解两个类

  • Proxy

  • InvocationHandler 代理实例处理程序

代码理解 举例1:

  1. 接口

//租房
public interface Rent {
    void rent();
}
  1. 真实角色

//房东
public class Host implements Rent{
    @Override
    public void rent() {
        System.out.println("房东要出租");
    }
}
  1. 代理处理程序 实现了接口InvocationHandler

package com.yw.demo3;

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

//自动生成代理类
public class ProxyInvocationHandler implements InvocationHandler {

    //被代理的接口
    private Rent rent;

    public void setRent(Rent rent){
        this.rent=rent;
    }

    //生成得到代理类
    public Object getProxy(){
        return Proxy.newProxyInstance(this.getClass().getClassLoader(),rent.getClass().getInterfaces(),this );
    }

    //处理代理实例,并返回结果
    @Override
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
        //动态代理的本质,就是反射机制体现
        Object result=method.invoke(rent,args);
        return result;
    }
}
  1. 客户端访问代理角色

package com.yw.demo3;

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

        //代理角色 :现在没有
        ProxyInvocationHandler pih=new ProxyInvocationHandler();
        //通过调用程序处理来处理我们要调用的接口对象
        pih.setRent(host);

        Rent proxy=(Rent) pih.getProxy();
        proxy.rent();
    }
}

举例2:

  1. 接口

package com.yw.demo4;

public interface UserService {
    void add();
    void delete();
    void update();
    void query();
}
  1. 真实角色

package com.yw.demo4;

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

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

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

    @Override
    public void query() {
        System.out.println("查询了一个用户");
    }
}
  1. 动态代理处理程序

package com.yw.demo4;

import com.yw.demo3.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(){
        return Proxy.newProxyInstance(this.getClass().getClassLoader(),target.getClass().getInterfaces(),this );
    }

    //处理代理实例,并返回结果
    @Override
    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("[loging]使用了"+msg+"方法");
    }
}
  1. 客户端访问代理角色

package com.yw.demo4;

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

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

        pih.setTarget(userService);
        UserService proxy=(UserService) pih.getProxy();
        proxy.add();
    }
}
结果:
[loging]使用了add方法
增加了一个用户

总结

动态代理的好处:

  • 一个动态代理类代理的是一个接口,一般就是对应的一类业务

  • 一个动态代理类可以代理多个类,只要实现同一个接口即可

9.AOP

9.1 什么是AOP

面向切面编程,通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术

9.2 AOP在Spring中的作用

提供声明事务;允许用户自定义切面

  • 横切关注点:跨越应用程序多个模块的方法或功能,即,与我们业务逻辑无关,但是我们需要关注的部分,就是横切关注点,如日志,安全,缓存,事务等等。。。。

  • 切面(ASPECT):切面关注点被模块化的特殊时期。即,他是一个类

  • 通知(Advice):切面必须要完成的工作,即,他是类的一个方法

  • 目标(Target):被通知对象

  • 代理(Proxy):向目标对象应用通知之后创建的对象

  • 切入点(PointCut):切面通知执行的地点定义

  • 连接点(Joint Point):与切入点匹配的执行点

Spring中支持的5种类型的Advice

即AOP在不改变原有的 代码下,去增加新的功能

9.3 使用Spring实现AOP

9.3.1 方法一:使用Spring 的API 接口

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

  xmlns:aop="http://www.springframework.org/schema/aop"
         
     http://www.springframework.org/schema/aop
     https://www.springframework.org/schema/aop/spring-aop.xsd">  

实现增加日志功能

接口

package com.yw.service;

public interface UserService {
    void add();
    void delete();
    void update();
    void query();
}

实现类

package com.yw.service;

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

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

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

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

log 类

package com.yw.log;

import org.springframework.aop.MethodBeforeAdvice;

import java.lang.reflect.Method;

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

配置文件

package com.yw.log;

import org.springframework.aop.AfterReturningAdvice;

import java.lang.reflect.Method;

public class AfterLog implements AfterReturningAdvice {
    /**
     *
     * @param returnValue 返回值
     * @param method
     * @param args
     * @param target
     * @throws Throwable
     */
    @Override
    public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable {
        System.out.println("执行了"+method.getName()+"方法。返回结果为:"+returnValue);
    }
}

测试

public class MyTest {
    public static void main(String[] args) {
        ApplicationContext context=new ClassPathXmlApplicationContext("applicationContext.xml");
        UserService uSerService=(UserService)context.getBean("userService");
        uSerService.add();
    }
}
结果
com.yw.service.USerServiceImpl的add被执行了
增加了一个用户
执行了add方法。返回结果为:null

9.3.2 方法二 : 使用自定义类实现

自定义类

public class DiyPointCut {
    public void before(){
        System.out.println("=========方法执行前=======");
    }

    public void after(){
        System.out.println("=========方法执行后=======");
    }
}

配置文件

<!--    方式二 自定义另类-->
    <bean id="diy" class="com.yw.diy.DiyPointCut"/>

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

测试结果

=========方法执行前=======
增加了一个用户
=========方法执行后=======

9.2.3 方法三:使用注解方式

切面类

package com.yw.anno;

//使用注解方式实现AOP

import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;

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

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

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

    //在环绕增强中,我们可以给定一个参数,代表我们需要获取处理切入的点
    @Around("execution(* com.yw.service.USerServiceImpl.*(..))")
    public void around(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
        System.out.println("环绕前");
        //执行方法
        System.out.println(proceedingJoinPoint.getSignature());
        Object proceed=proceedingJoinPoint.proceed();
        System.out.println("环绕后");
    }
}

配置文件

<!--    方式四 注解-->
    <bean id="annotationPointCut" class="com.yw.anno.AnnotationPointCut"/>
<!--    开启注解支持-->
    <aop:aspectj-autoproxy/>

结果

环绕前
void com.yw.service.UserService.delete()
=========方法执行前=======
删除了一个用户
=========方法执行后=======
环绕后

10 整合 Mybatis

步骤:

  1. 导入相关jar包

    <?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">
        <parent>
            <artifactId>spring-study</artifactId>
            <groupId>org.example</groupId>
            <version>1.0-SNAPSHOT</version>
        </parent>
        <modelVersion>4.0.0</modelVersion>
    
        <artifactId>spring-09-mybatis</artifactId>
    
        <properties>
            <maven.compiler.source>1.8</maven.compiler.source>
            <maven.compiler.target>1.8</maven.compiler.target>
        </properties>
    
        <dependencies>
            <dependency>
                <groupId>junit</groupId>
                <artifactId>junit</artifactId>
                <version>4.12</version>
                <scope>test</scope>
            </dependency>
            <dependency>
                <groupId>mysql</groupId>
                <artifactId>mysql-connector-java</artifactId>
                <version>5.1.47</version>
            </dependency>
            <dependency>
                <groupId>org.mybatis</groupId>
                <artifactId>mybatis</artifactId>
                <version>3.5.2</version>
            </dependency>
            <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-webmvc</artifactId>
                <version>5.1.9.RELEASE</version>
            </dependency>
            <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-jdbc</artifactId>
                <version>5.1.9.RELEASE</version>
            </dependency>
            <dependency>
                <groupId>org.aspectj</groupId>
                <artifactId>aspectjweaver</artifactId>
                <version>1.8.13</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.22</version>
            </dependency>
        </dependencies>
    
        <build>
            <resources>
                <resource>
                    <directory>src/main/java</directory>
                    <includes>
                        <include>**/*.xml</include>
                    </includes>
                </resource>
            </resources>
        </build>
    
    </project>

  2. 编写配置文件

    1. 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.yw.pojo"/>
        </typeAliases>
        <environments default="development">
            <environment id="development">
                <transactionManager type="JDBC"/>
                <dataSource type="POOLED">
                    <property name="driver" value="com.mysql.jdbc.Driver"/>
                    <property name="url" value="jdbc:mysql://localhost:3306/mybatis"/>
                    <property name="username" value="root"/>
                    <property name="password" value="root"/>
                </dataSource>
            </environment>
        </environments>
        <mappers>
            <mapper class="com.yw.mapper.UserMapper"/>
        </mappers>
    </configuration>

  3. 实体类

    import lombok.Data;
    
    @Data
    public class User {
        private int id;
        private String name;
        private String pwd;

    mapper

    public interface UserMapper {
        List<User> userList();
    }

    UserMapper.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.yw.mapper.UserMapper">
        <select id="userList" resultType="com.yw.pojo.User">
            select * from mybatis.user;
        </select>
    
    </mapper>

  4. 测试

public class MyTest {
    @Test
    public void test1() throws IOException {
        String resources="mybatis-config.xml";
        InputStream inputStream= Resources.getResourceAsStream(resources);

        SqlSessionFactory sqlSessionFactory=new SqlSessionFactoryBuilder().build(inputStream);
        SqlSession session=sqlSessionFactory.openSession(true);

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

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

    }
}

User{id=1, name='小白', pwd='123456'} User{id=2, name='张三', pwd='1235456'} User{id=3, name='李四', pwd='125456'}

10.1 方式一 使用mybatis-spring

快速上手

要和 Spring 一起使用 MyBatis,需要在 Spring 应用上下文中定义至少两样东西:一个 SqlSessionFactory 和至少一个数据映射器类。

  1. 编写数据源

  2. sqlSessiomFactory

    spring-dao.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
           xmlns:aop="http://www.springframework.org/schema/aop"
           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
                               http://www.springframework.org/schema/aop
                               https://www.springframework.org/schema/aop/spring-aop.xsd">
    
    
    <!--    DataSource : 使用spring的数据源替换Mybatis的配置 c3p0 dbcp druid-->
        <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"/>
            <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/yw/mapper/*.xml"/>
        </bean>
    
        <bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
    <!--        只能用构造器注入sqlSessionFactory ,因为它没有set方法-->
            <constructor-arg index="0" ref="sqlSessionFactory"/>
        </bean>
    
    </beans>

  3. 需要给接口写实现类

    package com.yw.mapper;
    
    import com.yw.pojo.User;
    import org.mybatis.spring.SqlSessionTemplate;
    
    import java.util.List;
    
    public class UserMapperImpl implements UserMapper{
    
        private SqlSessionTemplate sqlSession;
    
        public void setSqlSession(SqlSessionTemplate sqlSession) {
            this.sqlSession = sqlSession;
        }
    
        @Override
        public List<User> userList() {
            UserMapper userMapper= sqlSession.getMapper(UserMapper.class);
            return userMapper.userList();
        }
    }

  4. 将实现类注入到spring中 applicationContext.xml

    1. <?xml version="1.0" encoding="UTF-8"?>
      <beans xmlns="http://www.springframework.org/schema/beans"
             xmlns:aop="http://www.springframework.org/schema/aop"
             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
                                 http://www.springframework.org/schema/aop
                                 https://www.springframework.org/schema/aop/spring-aop.xsd">
      
          <import resource="spring-dao.xml"/>
      
          <bean id="userMapper" class="com.yw.mapper.UserMapperImpl">
              <property name="sqlSession" ref="sqlSession"/>
          </bean>
      </beans>

  5. 测试

     @Test
    
        public void test2() {
            ApplicationContext context=new ClassPathXmlApplicationContext("applicationContext.xml");
            UserMapper mapper=context.getBean("userMapper",UserMapper.class);
            List<User> userList= mapper.userList();
    
            for (User user : userList) {
                System.out.println(user.toString());
            }
    
        }

10.2 方式二:使用SqlSessionDaoSupport

方法一中 实现类需要设置sqlSession <=>SqlSessionTemplate

也可以通过实现类继承SqlSessionDaoSupport

public class UserMapperImpl2 extends SqlSessionDaoSupport implements UserMapper {
    @Override
    public List<User> userList() {
//        SqlSession sqlSession= getSqlSession();
//        UserMapper userMapper= sqlSession.getMapper(UserMapper.class);
//        return userMapper.userList();
        return getSqlSession().getMapper(UserMapper.class).userList();
    }
}

spring-dao.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:aop="http://www.springframework.org/schema/aop"
       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
                           http://www.springframework.org/schema/aop
                           https://www.springframework.org/schema/aop/spring-aop.xsd">
​
​
<!--    DataSource : 使用spring的数据源替换Mybatis的配置 c3p0 dbcp druid-->
    <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"/>
        <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/yw/mapper/*.xml"/>
    </bean>
​
</beans>

applicationContext.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:aop="http://www.springframework.org/schema/aop"
       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
                           http://www.springframework.org/schema/aop
                           https://www.springframework.org/schema/aop/spring-aop.xsd">
​
    <import resource="spring-dao.xml"/>
​
   <bean id="userMapper" class="com.yw.mapper.UserMapperImpl2">
        <property name="sqlSessionFactory" ref="sqlSessionFactory"/>
    </bean>
​
</beans>

11 声明式事务

11.1 回顾

  • 要么都成功,要么都失败

  • 涉及到数据库一致性问题

  • 确保完整性和一致性

事务的原则 ACDI:

  • 原子性

  • 一致性

  • 隔离性

    • 多个业务可能操作同一个资源,防止数据损坏

  • 持久性

    • 事务一旦提交,无论系统发生什么问题,结果都不会受到影响,被持久化写到存储器

问题引入:

业务增加 新增 删除

userList() 在获取列表的同时穿插了新增 删除方法

package com.yw.mapper;
​
import com.yw.pojo.User;
import org.mybatis.spring.support.SqlSessionDaoSupport;
​
import java.util.List;
​
public class UserMapperImpl2 extends SqlSessionDaoSupport implements UserMapper {
    @Override
    public List<User> userList() {
        User user=new User(5,"小艾","3456789");
        UserMapper userMapper=getSqlSession().getMapper(UserMapper.class);
        userMapper.addUser(user);
        userMapper.deleteUser(user);
        return getSqlSession().getMapper(UserMapper.class).userList();
    }
​
    @Override
    public int addUser(User user) {
        return getSqlSession().getMapper(UserMapper.class).addUser(user);
    }
​
    @Override
    public int deleteUser(User user) {
        return getSqlSession().getMapper(UserMapper.class).deleteUser(user);
    }
}

其application.xml spring-dao.xml 省略,参考上节内容

UserMapper.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.yw.mapper.UserMapper">
    <select id="userList" resultType="com.yw.pojo.User">
        select * from mybatis.user;
    </select>
​
    <insert id="addUser" parameterType="user">
        insert into mybatis.user (id,name,pwd) values (#{id},#{name},#{pwd});
    </insert>
​
    <delete id="deleteUser" parameterType="user">
        delete from mybatis.user where id=#{id}
    </delete>
</mapper>

加入故意将其中删除用户的sql 写错,测试运行结果会报错

数据库原有数据:

 

再次查询数据库查看列表如下:

会发现即使程序报错,仍然将数据插入到表中了

所以这时候我们可以使用到事务解决该问题了

11.2 mybatis-spring 中 Transactions

  • 声明式事务:AOP

  • 编程式事务 在源代码上改动

要启用 Spring 事务处理,只需DataSourceTransactionManager在 Spring 配置文件中创建一个:

  
 <bean id = "transactionManager" class = "org.springframework.jdbc.datasource.DataSourceTransactionManager" >
        <property name="dataSource" ref="dataSource"/>
    </bean>
    

了解

根据11.2 代码 需要 在 spring 中加入事务的管理

spring-dao.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:tx="http://www.springframework.org/schema/tx"
       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
        http://www.springframework.org/schema/aop
        https://www.springframework.org/schema/aop/spring-aop.xsd
        http://www.springframework.org/schema/tx
        https://www.springframework.org/schema/tx/spring-tx.xsd">
​
​
<!--    DataSource : 使用spring的数据源替换Mybatis的配置 c3p0 dbcp druid-->
    <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"/>
        <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/yw/mapper/*.xml"/>
    </bean>
​
<!--    <bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">-->
<!--&lt;!&ndash;        只能用构造器注入sqlSessionFactory ,因为它没有set方法&ndash;&gt;-->
<!--        <constructor-arg index="0" ref="sqlSessionFactory"/>-->
<!--    </bean>-->
​
<!--    配置声明式事务-->
    <bean id = "transactionManager" class = "org.springframework.jdbc.datasource.DataSourceTransactionManager" >
        <property name="dataSource" ref="dataSource"/>
    </bean>
​
    <tx:advice id="txAdvice" transaction-manager="transactionManager">
<!--        给哪些方法配置事务-->
<!--        配置事务的传播特性 默认:propagation="REQUIRED"-->
        <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.yw.mapper.*.*(..))"/>
        <aop:advisor advice-ref="txAdvice" pointcut-ref="txPointCut"/>
    </aop:config>
</beans>
​
​
​

视频课程,所总结的学习笔记,有兴趣的可以去看视频学习!!!!

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值