九天猎人 发表于 2024-11-5 09:22:21

Spring3(代理模式 Spring1案例补充 Aop 口试题)

代理模式概述

在代理模式(Proxy Pattern)中,一个类代表另一个类的功能,这种类型的设计模式属于布局型模式。
代理模式通过引入一个代理对象来控制对原对象的访问。代理对象在客户端和目标对象之间充当中介,负责将客户端的哀求转发给目标对象,同时可以在转发哀求前后进行额外的处理。
在代理模式中,我们创建具有现有对象的对象,以便向外界提供功能接口。
介绍

意图


[*]为其他对象提供一种代理以控制对这个对象的访问。
重要解决的题目


[*]代理模式解决的是在直接访问某些对象时可能碰到的题目,例如对象创建本钱高、需要安全控制或远程访问等。
使用场景


[*]当需要在访问一个对象时进行一些控制或额外处理时。
实现方式


[*]增加中间层:创建一个代理类,作为真实对象的中间层。
[*]代理与真实对象组合:代理类持有真实对象的引用,并在访问时进行控制。
关键代码


[*]代理类:实现与真实对象相同的接口,并添加额外的控制逻辑。
[*]真实对象:现实执行任务的对象。
应用实例


[*]快捷方式:Windows体系中的快捷方式作为文件或程序的代理。
[*]角色扮演:孙悟空作为高翠兰的代理,猪八戒无法区分。
[*]代售点:购买火车票时,代售点作为火车站的代理。
[*]支票:作为银行账户资金的代理,控制资金的访问。
[*]Spring AOP:使用代理模式来实现面向切面编程。
长处


[*]职责分离:代理模式将访问控制与业务逻辑分离。
[*]扩展性:可以灵活地添加额外的功能或控制。
[*]智能化:可以智能地处理访问哀求,如延迟加载、缓存等。
缺点


[*]性能开销:增加了代理层可能会影响哀求的处理速度。
[*]实现复杂性:某些类型的代理模式实现起来可能较为复杂。
使用发起


[*]根据具体需求选择合适的代理类型,如远程代理、假造代理、保护代理等。
[*]确保代理类与真实对象接口一致,以便客户端透明地使用代理。
注意事项


[*]与适配器模式的区别:适配器模式改变接口,而代理模式不改变接口。
[*]与装饰器模式的区别:装饰器模式用于加强功能,代理模式用于控制访问。
布局
重要涉及到以下几个核心角色:


[*]抽象主题(Subject):

[*]定义了真实主题和代理主题的共同接口,这样在任何使用真实主题的地方都可以使用代理主题。

[*]真实主题(Real Subject):

[*]实现了抽象主题接口,是代理对象所代表的真实对象。客户端直接访问真实主题,但在某些情况下,可以通过代理主题来间接访问。

[*]代理(Proxy):

[*]实现了抽象主题接口,并持有对真实主题的引用。代理主题通常在真实主题的基础上提供一些额外的功能,例如延迟加载、权限控制、日记记载等。

[*]客户端(Client):

[*]使用抽象主题接口来操作真实主题或代理主题,不需要知道具体是哪一个实现类。

什么是代理模式?

代理模式给某一个对象提供一个代理对象,并由代理对象控制对原对象的引用。
通俗的来讲代理模式就是我们生活中常见的中介。
举个例子来说明:如果说我如今想买一辆二手车,固然我可以本身去找车源,做质量检测等一系列的车辆过户流程,但是这确实太浪费我得时间和精神了。我只是想买一辆车而已为什么我还要额外做这么多事呢?于是我就通过中介公司来买车,他们来给我找车源,帮我办理车辆过户流程,我只是负责选择本身喜好的车,然后付钱就可以了
为什么要使用代理模式?

**中介隔离作用:**在某些情况下,一个客户类不想大概不能直接引用一个委托对象,而代理类对象可以在客户类和委托对象之间起到中介的作用,其特性是代理类和委托类实现相同的接口。
**开闭原则,增加功能:**代理类除了是客户类和委托类的中介之外,我们还可以通过给代理类增加额外的功能来扩展委托类的功能,这样做我们只需要修改代理类而不需要再修改委托类,符合代码设计的开闭原则。
有哪几种代理模式?

我们有多种方式来实现代理,如果按照代理创建的时期来进行分类的话,可以分为两种:
静态代理:
静态代理是由程序员创建或特定工具主动生成源代码,再对其进行编译。在程序员运行之前,代理类class文件就已经被创建了。
动态代理:
动态代理分为:


[*]基于接口的动态代理(JDK自带)
[*]基于子类的动他代理(第三方,例如cglib)
项目布局:
https://img-blog.csdnimg.cn/img_convert/bdd1eca069fe3edfd68074b2691c2c6e.png
静态代理

实现:
ISinger接口:
ISinger.java
package com.stringzhua.staticproxy;

/**
* @Author Stringzhua
* @Date 2024/9/12 16:27
* description:
*/
public interface ISinger {
    public void sing();
}
被代理对象歌手XuSinger
XuSinger.java
package com.stringzhua.staticproxy;

/**
* @Author Stringzhua
* @Date 2024/9/12 16:27
* description:
*/
public class XuSinger implements ISinger {

    public void sing() {
      System.out.println("断桥残雪");
    }
}
经济人实现了ISinger接口,实现代理,在经纪人方法上进行歌手对象的加强
JinJiRen.java
package com.stringzhua.staticproxy;

/**
* @Author Stringzhua
* @Date 2024/9/12 16:29
* description:
*/
public class JinJiRen implements ISinger {
    //被代理对象
    //1.中介隔离作用
    ISinger singer;

    public JinJiRen(ISinger singer) {
      this.singer = singer;
    }

    public void sing() {
      //2.方法增强
      System.out.println("自我介绍");
      singer.sing();
    }
}
哀求:
package com.stringzhua.staticproxy;

/**
* @Author Stringzhua
* @Date 2024/9/12 16:31
* description:代理模式:
*   功能:
*         1.中介隔离作用
*         2.方法增强
*   方式:
*         1.静态代理
*         2.动态动态
*             jdk自带
*             第三方cglib
*/
public class Test {
    public static void main(String[] args) {
      //1.被代理对象
      ISinger xu = new XuSinger();
      //2.代理对象
      ISinger jinjiren = new JinJiRen(xu);
      jinjiren.sing();
    }
}
https://img-blog.csdnimg.cn/img_convert/7d5193c0caa7d581b3f2a460d63a6258.png
基于接口实现的动态代理(JDK自带)

基于接口的动态代理:


[*]特点:字节码随用随创建,随用随加载
[*]作用:不修改源码的基础上对方法加强
涉及的类:Proxy
提供者:JDK官方
**怎样创建代理对象:**使用Proxy类中的newProxyInstance方法
创建代理对象的要求:被代理类最少实现一个接口,如果没有则不能使用
newProxyInstance方法的参数:


[*]ClassLoader:类加载器

[*]它是用于加载代理对象字节码的。和被代理对象使用相同的类加载器。固定写法。

[*]Class[]:字节码数组

[*]它是用于让代理对象和被代理对象有相同方法。固定写法。

[*]InvocationHandler:用于提供加强的代码
实现:
ISinger接口:
ISinger.java
package com.stringzhua.proxy;

/**
* @Author Stringzhua
* @Date 2024/9/12 16:27
* description:
*/
public interface ISinger {
    public void sing();
}
XuSinger实现类:
XuSinger.java
package com.stringzhua.proxy;

/**
* @Author Stringzhua
* @Date 2024/9/12 16:27
* description:
*/
public class XuSinger implements ISinger {

    public void sing() {
      System.out.println("断桥残雪");
    }
}
测试类:
Test.java
package com.stringzhua.proxy;

import com.stringzhua.staticproxy.JinJiRen;

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

/**
* @Author Stringzhua
* @Date 2024/9/12 16:31
* description:代理模式:
* 功能:
* 1.中介隔离作用
* 2.方法增强
* 方式:
* 1.静态代理
* 2.动态动态
* jdk自带
* 第三方cglib
*/
public class Test {
    public static void main(String[] args) {
      //1.被代理对象
      final ISinger xu = new XuSinger();
      /**
         * 基于接口的动态代理:
         *特点:字节码随用随创建,随用随加载
         *作用:不修改源码的基础上对方法增强
         *涉及的类:Proxy
         *提供者:JDK官方
         *如何创建代理对象:
         *      使用Proxy类中的newProxyInstance方法
         *创建代理对象的要求:
         *      被代理类最少实现一个接口,如果没有则不能使用
         *newProxyInstance方法的参数:
         *      ClassLoader:类加载器
         *          它是用于加载代理对象字节码的。和被代理对象使用相同的类加载器。固定写法。
         *      Class[]:字节码数组
         *          它是用于让代理对象和被代理对象有相同方法。固定写法。
         *      InvocationHandler:用于提供增强的代码
         *
      //2.代理对象-->内部类
      //JDK自带
      ISinger jinjiren = (ISinger) Proxy.newProxyInstance(
                xu.getClass().getClassLoader(), xu.getClass().getInterfaces(), new InvocationHandler() {
            public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
                System.out.println("自我介绍");
                Object invoke = method.invoke(xu, args);
                return invoke;
            }
      });
      jinjiren.sing();
    }
}
https://img-blog.csdnimg.cn/img_convert/59969c1c5022be844187d3038f45a0a5.png
基于子类的动态代理

基于子类的动态代理


[*]涉及的类:Enhancer
[*]提供者:第三方cglib库
[*]开辟环境:添加cglib依靠坐标
<dependencies>
<dependency>
      <groupId>cglib</groupId>
      <artifactId>cglib</artifactId>
      <version>2.1_3</version>
</dependency>
</dependencies>
怎样创建代理对象:使用Enhancer类中的create方法
创建代理对象的要求:被代理类不能是最终类
create方法的参数:


[*]Class:字节码

[*]它是用于指定被代理对象的字节码。

[*]Callback:用于提供加强的代码

[*]它是让我们写怎样代理。我们一般都是些一个该接口的实现类,通常情况下都是匿名内部类,但不是必须的。

此接口的实现类都是谁用谁写。
我们一般写的都是该接口的子接口实现类:MethodInterceptor
实现:
ISinger接口:
package com.stringzhua.cglibproxy;

/**
* @Author Stringzhua
* @Date 2024/9/12 16:27
* description:
*/
public interface ISinger {
    public void sing();
}
XuSinger接口实现类:
package com.stringzhua.cglibproxy;

/**
* @Author Stringzhua
* @Date 2024/9/12 16:27
* description:
*/
public class XuSinger implements ISinger {

    public void sing() {
      System.out.println("断桥残雪");
    }
}
测试,Test.java
package com.stringzhua.cglibproxy;

import net.sf.cglib.proxy.Enhancer;
import net.sf.cglib.proxy.InvocationHandler;

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

/**
* @Author Stringzhua
* @Date 2024/9/12 16:31
* description:代理模式:
* 功能:
* 1.中介隔离作用
* 2.方法增强
* 方式:
* 1.静态代理
* 2.动态动态
* jdk自带
* 第三方cglib
*/
public class Test {
    public static void main(String[] args) {
      //1.被代理对象
      final ISinger xu = new XuSinger();
      //2.代理对象-->内部类
      /**
         * 2.创建代理对象
         * 参数1:被代理对象的字节码
         * 参数2:InvocationHandler
         * */
      /**
         * 执行被代理对象的任何方法都会经过该方法
         * @param proxy
         * @param method
         * @param args
         *    以上三个参数和基于接口的动态代理中invoke方法的参数是一样的
         * @param methodProxy :当前执行方法的代理对象
         * @return
         * @throws Throwable
         */
      //第三方cglib
      ISinger jinjiren = (ISinger) Enhancer.create(xu.getClass(), new InvocationHandler() {
            public Object invoke(Object o, Method method, Object[] objects) throws Throwable {
                System.out.println("自我介绍");
                Object invoke = method.invoke(xu, objects);
                return invoke;
            }
      });
      jinjiren.sing();
    }
}
https://img-blog.csdnimg.cn/img_convert/5cfd58a76eaeb9dc89a999ea83a43f78.png
Spring_AOP_01案例补充(添加事务管理)

在Spring_AOP_01中的基础上 实现 转钱功能
xml实现
项目状态:成功提交,失败不能做到一个业务方法一起回滚
分析缘故原由:项目存在事务主动管理,且主动管理在dao层实现
解决方案:事务管理将来一定是在service层实现
方案思考:
1.dao层不在进行事务管理,自动事务提交关闭

2.业务类的每个业务方法中的多个dao操作,公用同一个连接connection对象

3.ThreadLocal
实现完备代码:

Controller层:
IAccountController.java
package com.stringzhua.controller;

import com.stringzhua.pojo.Account;

import java.util.List;

/**
* @Author Stringzhua
* @Date 2024/9/11 17:05
* description:
*/
public interface IAccountController {
    public void add(Account account);
    public void update(Account account);
    public Account findByName(String name);
    public List<Account> findAll();
    public void transformMoney(String fromName, String targetName, int money);

}
AccountControllerImpl.java
package com.stringzhua.controller;

import com.stringzhua.pojo.Account;
import com.stringzhua.service.IAccountService;

import java.util.List;

/**
* @Author Stringzhua
* @Date 2024/9/11 17:06
* description:
*/
public class AccountControllerImpl implements IAccountController {
    IAccountService service;

    public void setService(IAccountService service) {
      this.service = service;
    }

    public void add(Account account) {
      service.add(account);
    }

    public void update(Account account) {
      service.update(account);
    }

    public Account findByName(String name) {
      return service.findByName(name);
    }

    public List<Account> findAll() {
      return service.findAll();
    }

    public void transformMoney(String fromName, String targetName, int money) {
      service.transformMoney(fromName, targetName, money);
    }
}
Dao层:
IAccountDao.java
package com.stringzhua.dao;

import com.stringzhua.pojo.Account;

import java.util.List;

/**
* @Author Stringzhua
* @Date 2024/9/11 16:53
* description:
*/
public interface IAccountDao {
    public void add(Account account);
    public void update(Account account);
    public Account findByName(String name);
    public List<Account> findAll();
}
AccountDaoImpl.java
package com.stringzhua.dao;

import com.stringzhua.pojo.Account;
import com.stringzhua.utils.ConnectionUtils;
import org.apache.commons.dbutils.QueryRunner;
import org.apache.commons.dbutils.handlers.BeanHandler;
import org.apache.commons.dbutils.handlers.BeanListHandler;

import java.sql.SQLException;
import java.util.List;

/**
* @Author Stringzhua
* @Date 2024/9/11 16:54
* description:
*/
public class AccountDaoImpl implements IAccountDao {
    //装配
    QueryRunner queryRunner;

    public void setQueryRunner(QueryRunner queryRunner) {
      this.queryRunner = queryRunner;
    }

    //装配工具类的Connection,使用同一个Connection
    ConnectionUtils connectionUtils;

    public void setConnectionUtils(ConnectionUtils connectionUtils) {
      this.connectionUtils = connectionUtils;
    }

    public void add(Account account) {
      try {
            queryRunner.update(connectionUtils.createConn(), "insert into account(aname,amoney) values(?,?)", account.getAname(), account.getAmoney());
      } catch (SQLException throwables) {
            throwables.printStackTrace();
      }
    }

    public void update(Account account) {
      try {
            queryRunner.update(connectionUtils.createConn(), "update account set aname=?,amoney=? where aid=?", account.getAname(), account.getAmoney(), account.getAid());
      } catch (SQLException throwables) {
            throwables.printStackTrace();
      }
    }

    public Account findByName(String name) {
      try {
            return queryRunner.query(connectionUtils.createConn(), "select * from account where aname=?", new BeanHandler<Account>(Account.class), name);
      } catch (SQLException throwables) {
            throwables.printStackTrace();
      }
      return null;
    }

    public List<Account> findAll() {
      try {
            return queryRunner.query(connectionUtils.createConn(), "select * from account", new BeanListHandler<Account>(Account.class));
      } catch (SQLException throwables) {
            throwables.printStackTrace();
      }
      return null;
    }
}
factory层:
ServiceFactory.java
package com.stringzhua.factory;

import com.stringzhua.controller.IAccountController;
import com.stringzhua.service.IAccountService;
import com.stringzhua.utils.TransactionUtils;

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

/**
* @Author Stringzhua
* @Date 2024/9/12 18:39
* description:
*/
public class ServiceFactory {
    //被代理的是service
    IAccountService proxyservice;

    public void setProxyservice(IAccountService proxyservice) {
      this.proxyservice = proxyservice;
    }

    //代理的是transaction事务
    TransactionUtils transactionUtils;

    public void setTransactionUtils(TransactionUtils transactionUtils) {
      this.transactionUtils = transactionUtils;
    }

    //创建代理
    public IAccountService proxyService() {
      return (IAccountService) Proxy.newProxyInstance(
            proxyservice.getClass().getClassLoader(), proxyservice.getClass().getInterfaces(), new InvocationHandler() {
                public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
                  Object object = null;
                  try {
                        //开启事务
                        transactionUtils.beginTransaction();
                        object = method.invoke(proxyservice, args);
                        //自动提交
                        transactionUtils.commitTransaction();
                  } catch (Exception e) {
                        e.printStackTrace();
                        transactionUtils.rollbackTransaction();
                  } finally {
                        transactionUtils.closeTransaction();
                  }
                  return object;

                }
            });
      }
}
POJO层:
Account.java
package com.stringzhua.pojo;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
* @Author Stringzhua
* @Date 2024/9/11 16:41
* description:
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
public class Account {
    private int aid;
    private String aname;
    private int amoney;

    public Account(String aname, int amoney) {
      this.aname = aname;
      this.amoney = amoney;
    }
}
Service层:
IAccountService.java
package com.stringzhua.service;

import com.stringzhua.pojo.Account;

import java.util.List;

/**
* @Author Stringzhua
* @Date 2024/9/11 16:53
* description:
*/
public interface IAccountService {
    public void add(Account account);

    public void update(Account account);

    public Account findByName(String name);

    public List<Account> findAll();

    public void transformMoney(String fromName, String targetName, int money);

}
AccountServiceImpl.java
https://img-blog.csdnimg.cn/img_convert/ca786fff9b3f8bd38a1fd73af782f769.png
package com.stringzhua.service;

import com.stringzhua.dao.IAccountDao;
import com.stringzhua.pojo.Account;
import com.stringzhua.utils.TransactionUtils;

import java.util.List;

/**
* @Author Stringzhua
* @Date 2024/9/11 17:04
* description:
*/
public class AccountServiceImpl implements IAccountService {
    IAccountDao dao;

    public void setDao(IAccountDao dao) {
      this.dao = dao;
    }

    public void add(Account account) {
      dao.add(account);
    }

    public void update(Account account) {
      dao.update(account);
    }

    public Account findByName(String name) {
      return dao.findByName(name);
    }

    public List<Account> findAll() {
      return dao.findAll();
    }

    public void transformMoney(String fromName, String targetName, int money) {

      Account fromAccount = dao.findByName(fromName);
      Account targetAccount = dao.findByName(targetName);

      fromAccount.setAmoney(fromAccount.getAmoney() - money);
      targetAccount.setAmoney(targetAccount.getAmoney() + money);

      dao.update(fromAccount);
      //假设出现异常
      int a = 10 / 0;
      dao.update(targetAccount);
    }
}
Util层:
ConnectionUtils.java
package com.stringzhua.utils;


import javax.sql.DataSource;
import java.sql.Connection;
import java.sql.SQLException;

/**
* @Author Stringzhua
* @Date 2024/9/12 12:01
* description:
*/
public class ConnectionUtils {
    DataSource dataSource;

    public void setDataSource(DataSource dataSource) {
      this.dataSource = dataSource;
    }

    //这里创建了线程区域对象
    ThreadLocal<Connection> threadLocal = new ThreadLocal<Connection>();

    //获取链接
    public Connection createConn() {
      try {
            Connection connection = threadLocal.get();
            //判断是不是第一次获取
            if (connection == null) {
                connection = dataSource.getConnection();
                //将connection存入threadlocal中
                threadLocal.set(connection);
            }
            return connection;
      } catch (SQLException throwables) {
            throwables.printStackTrace();
      }
      return null;
    }

    //从ThreadLocal中移除链接
    public void removeConn() {
      threadLocal.remove();
    }
}
TransactionUtils.java
package com.stringzhua.utils;

import java.sql.SQLException;

/**
* @Author Stringzhua
* @Date 2024/9/12 12:10
* description:
*/
public class TransactionUtils {
    ConnectionUtils connectionUtils;

    public void setConnectionUtils(ConnectionUtils connectionUtils) {
      this.connectionUtils = connectionUtils;
    }

    //开启手动管理事务
    public void beginTransaction() {
      try {
            connectionUtils.createConn().setAutoCommit(false);
      } catch (SQLException throwables) {
            throwables.printStackTrace();
      }
    }

    //提交事务
    public void commitTransaction() {
      try {
            connectionUtils.createConn().commit();
      } catch (SQLException throwables) {
            throwables.printStackTrace();
      }
    }

    //回滚事务
    public void rollbackTransaction() {
      try {
            connectionUtils.createConn().rollback();
      } catch (SQLException throwables) {
            throwables.printStackTrace();
      }
    }

    //关闭事务
    public void closeTransaction() {
      try {
            connectionUtils.createConn().close();
            connectionUtils.removeConn();
      } catch (SQLException throwables) {
            throwables.printStackTrace();
      }
    }

}
applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
    <!--    注入dataSource-->
    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
      <property name="driverClass" value="com.mysql.cj.jdbc.Driver"></property>
      <property name="jdbcUrl" value="jdbc:mysql://localhost:3306/mavendb?serverTimezone=Asia/Shanghai"></property>
      <property name="user" value="root"></property>
      <property name="password" value="12345678"></property>
    </bean>

    <!--    queryRunner的注入-->
    <bean id="queryRunner" class="org.apache.commons.dbutils.QueryRunner">
      <constructor-arg name="ds" ref="dataSource"></constructor-arg>
    </bean>

    <!--    connectionUtils工具类的注入-->
    <bean id="connectionUtils" class="com.stringzhua.utils.ConnectionUtils">
      <property name="dataSource" ref="dataSource"></property>
    </bean>

    <!--    transactionUtils工具类的注入-->
    <bean id="transactionUtils" class="com.stringzhua.utils.TransactionUtils">
      <property name="connectionUtils" ref="connectionUtils"></property>
    </bean>


    <!--    dao层的注入-->
    <bean id="daoImpl" class="com.stringzhua.dao.AccountDaoImpl">
      <property name="queryRunner" ref="queryRunner"></property>
      <property name="connectionUtils" ref="connectionUtils"></property>
    </bean>

    <!--    service层注入(被代理) -->
    <bean id="serviceImpl" class="com.stringzhua.service.AccountServiceImpl">
      <property name="dao" ref="daoImpl"></property>
    </bean>

    <!--    service注入(代理)-->
    <bean id="proxyServiceImpl" class="com.stringzhua.service.AccountServiceImpl" factory-bean="factory"
          factory-method="proxyService"></bean>
    <bean id="factory" class="com.stringzhua.factory.ServiceFactory">
      <property name="transactionUtils" ref="transactionUtils"></property>
      <property name="proxyservice" ref="serviceImpl"></property>
    </bean>

    <!--    controller层的注入(消费者)-->
    <bean id="controllerImpl" class="com.stringzhua.controller.AccountControllerImpl">
      <property name="service" ref="proxyServiceImpl"></property>
    </bean>
</beans>
进行单元测试:
package com.stringzhua.test;

import com.stringzhua.controller.IAccountController;
import com.stringzhua.pojo.Account;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

import java.util.List;

/**
* @Author Stringzhua
* @Date 2024/9/11 17:07
* description:
*/
//让测试运行于Spring测试环境,以便在测试开始的时候自动创建Spring的应用上下文
@RunWith(SpringJUnit4ClassRunner.class)
//获取applicationContext容器
@ContextConfiguration(locations = "classpath:applicationContext.xml")
public class Test01 {
    @Autowired
    IAccountController controller;

    @Test
    public void test01() {
      controller.add(new Account("田晞冉", 8000));
      controller.add(new Account("爪爪", 6000));
    }

    @Test
    public void test02() {
      controller.update(new Account(1, "田晞冉", 6000));
    }

    @Test
    public void test03() {
      List<Account> all = controller.findAll();
      for (int i = 0; i < all.size(); i++) {
            Account account = all.get(i);
            System.out.println(account);
      }
    }

    @Test
    public void test04() {
      Account account = controller.findByName("田晞冉");
      System.out.println(account);
    }

    @Test
    public void test05(){
      controller.transformMoney("田晞冉","爪爪",1000);
    }
}
https://img-blog.csdnimg.cn/img_convert/29926b149c74ef6c0e880e7bfe642351.png
常规实现:

Service新增接口
public void transformMoney(String fromName, String targetName, int money);
https://img-blog.csdnimg.cn/img_convert/b958a4be1784f2a9f70648dc52753762.png
实现类重写该方法
https://img-blog.csdnimg.cn/img_convert/65729aebabaf6a0452b3cc2e4da20d08.png
public void transformMoney(String fromName, String targetName, int money) {

      Account fromAccount = dao.findByName(fromName);
      Account targetAccount = dao.findByName(targetName);

      fromAccount.setAmoney(fromAccount.getAmoney() - money);
      targetAccount.setAmoney(targetAccount.getAmoney() + money);

      dao.update(fromAccount);
      //假设出现异常
      int a = 10 / 0;
      dao.update(targetAccount);
    }
controller同理:
https://img-blog.csdnimg.cn/img_convert/78b372d85dacf1a38cc5f1b45b6cf62f.png
https://img-blog.csdnimg.cn/img_convert/60cb695f98643373499a1b6296899a55.png
同时需要在service 实现类装配事务工具类
//装配事务工具类
TransactionUtil transactionUtil;

public void setTransactionUtil(TransactionUtil transactionUtil) {
    this.transactionUtil = transactionUtil;
}
dao层装配连接工具类
//装配连接工具类
    ConnectionUtil connectionUtil;

    public void setConnectionUtil(ConnectionUtil connectionUtil) {
      this.connectionUtil = connectionUtil;
    }
在xml文件中注入
<!-- 注入连接工具类 -->
<bean id="connectionUtil" class="com.zkt.util.ConnectionUtil">
    <property name="dataSource" ref="dataSource"/>
</bean>
<!-- 注入事务工具类 -->
<bean id="transactionUtil" class="com.zkt.util.TransactionUtil">
    <property name="connectionUtil" ref="connectionUtil"/>
</bean>
<!-- 注入dao -->
<bean id="dao" class="com.zkt.dao.AccountDaoImp">
    <property name="queryRunner" ref="queryRunner"/>
    <property name="connectionUtil" ref="connectionUtil"/>
</bean>
<!-- 注入service -->
<bean id="service" class="com.zkt.service.AccountServiceImp">
    <property name="dao" ref="dao"/>
    <property name="transactionUtil" ref="transactionUtil"/>
</bean>
代理实现

在factory包下创建代理:
package com.stringzhua.factory;

import com.stringzhua.controller.IAccountController;
import com.stringzhua.service.IAccountService;
import com.stringzhua.utils.TransactionUtils;

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

/**
* @Author Stringzhua
* @Date 2024/9/12 18:39
* description:
*/
public class ServiceFactory {
    //被代理的是service
    IAccountService proxyservice;

    public void setProxyservice(IAccountService proxyservice) {
      this.proxyservice = proxyservice;
    }

    //代理的是transaction事务
    TransactionUtils transactionUtils;

    public void setTransactionUtils(TransactionUtils transactionUtils) {
      this.transactionUtils = transactionUtils;
    }

    //创建代理
    public IAccountService proxyService() {
      return (IAccountService) Proxy.newProxyInstance(
            proxyservice.getClass().getClassLoader(), proxyservice.getClass().getInterfaces(), new InvocationHandler() {
                public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
                  Object object = null;
                  try {
                        //开启事务
                        transactionUtils.beginTransaction();
                        object = method.invoke(proxyservice, args);
                        //自动提交
                        transactionUtils.commitTransaction();
                  } catch (Exception e) {
                        e.printStackTrace();
                        transactionUtils.rollbackTransaction();
                  } finally {
                        transactionUtils.closeTransaction();
                  }
                  return object;

                }
            });
      }
}
事务工具类不变
连接工具类
public class ConnectionUtil {
    //线程区域对象
    ThreadLocal<Connection> connectionThreadLocal = new ThreadLocal<Connection>();

    //数据源
    DataSource dataSource;

    public void setDataSource(DataSource dataSource) {
      this.dataSource = dataSource;
    }

    //获取连接
    public Connection createConn() {
      try {
            //在口袋里面找连接
            Connection connection = connectionThreadLocal.get();
            //判断
            if (connection==null){
                connection=dataSource.getConnection();
                connectionThreadLocal.set(connection);
            }
            returnconnection;
      } catch (SQLException throwables) {
            throwables.printStackTrace();
      }
      returnnull;
    }
    //关闭连接
    public void closeConn(){
      connectionThreadLocal.remove();//解绑
    }
}
故service的transfer 正常写就行
@Override
    public void transfer(String sourceName, String targetName, int money) {


      Account sourceAccount = dao.findByName(sourceName);
      Account targetAccount = dao.findByName(targetName);

      sourceAccount.setAmoney(sourceAccount.getAmoney() - money);
      targetAccount.setAmoney(targetAccount.getAmoney() + money);

      dao.updateById(sourceAccount);
//      int a = 10 / 0;//模拟异常
      dao.updateById(targetAccount);

    }
在xml文件中注入:
<!-- 注入service(被代理对象) -->
<bean id="service" class="com.zkt.service.AccountServiceImp">
    <property name="dao" ref="dao"/>
</bean>
<!-- 注入service(代理对象) -->
<bean id="proxyService" class="com.zkt.service.AccountServiceImp" factory-bean="factory" factory-method="createProxy"/>
<bean id="factory" class="com.zkt.util.ProxyFactory">
    <property name="transactionUtil" ref="transactionUtil"/>
    <property name="toServiceProxy" ref="service"/>
</bean>
<!-- 注入controller(消费者) -->
<bean id="controller" class="com.zkt.controller.AccountControllerImp">
    <property name="service" ref="proxyService"/>
</bean>
AOP

AOP 为 Aspect Oriented Programming 的缩写,意思为面向切面编程,是通过预编译方式和运行期动态代理实现程序功能的同一维护的一种技术。
AOP 是 OOP 的延续,是软件开辟中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范型。使用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度低落,提高程序的可重用性,同时提高了开辟的效率。
AOP 的作用及其优势


[*]作用:在程序运行期间,在不修改源码的情况下对方法进行功能加强
[*]优势:减少重复代码,提高开辟效率,而且便于维护
AOP 的应用


[*]1.日记
[*]2.事务
[*]3.权限
AOP术语:
AOP通知类型
AOP将抽取出来的共性功能称为通知;通知类型:以通知在上下文中的具体位置作为划分


[*]前置通知(Before)
[*]后置通知(After)
[*]返回通知(After-returning)
[*]异常通知(After-throwing)
[*]围绕通知(Around)
AOP连接点(Join point)


[*]AOP将全部的方法都视为连接点,不管是接口里面的抽象方法,还是实现类里面的重写方法,都是连接点
AOP切点(Pointcut)


[*]AOP将可能被抽取共性功能的方法称为切入点。切入点是连接点的子集
AOP目标对象(Target):


[*]就是挖掉功能的方法对应的类生的对象,这种对象是无法直接完成最终工作的
AOP织入(Weaving):


[*]就是将挖掉的功能回填的动态过程
AOP切面:


[*]切点+通知
https://img-blog.csdnimg.cn/img_convert/c6a3694b9147d6568f4411bb248436e3.webp?x-oss-process=image/format,png
https://img-blog.csdnimg.cn/img_convert/e38b6a9d1373a543f99399fb5e12db45.png
实现步骤:


[*]1.添加依靠,aop与aspectj表达式的依靠
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-context</artifactId>
    <version>5.3.25</version>
</dependency>

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-test</artifactId>
    <version>5.3.25</version>
</dependency>

<dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>4.12</version>
    <scope>test</scope>
</dependency>

<dependency>
    <groupId>org.aspectj</groupId>
    <artifactId>aspectjweaver</artifactId>
    <version>1.8.7</version>
</dependency>


[*]2.创建spring的主配置文件,bean内的定名空间要添加aop的
<!--    前置通知,开启aop-->
<aop:config>
    <!--      配置切面-->
    <aop:aspect id="aopAspect" ref="logger">
      <!--            切点-->
      <aop:pointcut id="point" expression="execution( * com.stringzhua.service.*.*(..))"/>
      <!--            通知-->
      <aop:before method="printLogger" pointcut-ref="point"></aop:before>
    </aop:aspect>
</aop:config>


[*]3.创建业务代码并编写日记记载代码(事务管理代码)
[*]4.将业务层与日记记载层注入spring容器
[*]5.aop:config–aop配置
[*]aop:aspect–aop切面
[*]aop:before–通知内容与通知类型
切点表达式语法:
execution(修饰符 返回值 包名称.类名称.方法名称(参数列表))
execution(public void com.apesource.service.ServiceImp.findAll())
1.修饰符可以省略代表任意
    execution(返回值 包名称.类名称.方法名称(参数列表))
2.返回值可以使用“*”代表任意
    execution(* 包名称.类名称.方法名称(参数列表))
3.包名可以使用“*”代表任意名称
    execution(* *.*.*.类名称.方法名称(参数列表))
4.包名可以使用“..”代表任意个数
    execution(* *...类名称.方法名称(参数列表))
5.类名与方法名可以使用“*”代表任意
    execution(* *...*.*(参数列表))
6.参数列表可以使用".."代表任意个数任意类型
    execution(* *...*.*(..))
    如果有参数
      int======>int
      String===>java.lang.String
xml实现日记记载

https://img-blog.csdnimg.cn/img_convert/388af3c242fb7511e7f6136520342ef2.png
pom.xml
<dependencies>
      <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>5.3.25</version>
      </dependency>

      <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-test</artifactId>
            <version>5.3.25</version>
      </dependency>

      <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
      </dependency>

      <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjweaver</artifactId>
            <version>1.8.7</version>
      </dependency>
    </dependencies>
Service层:
IAccountService.java
package com.stringzhua.service;

/**
* @Author Stringzhua
* @Date 2024/9/13 10:14
* description:
*/
public interface IAccountService {
    //新增
    public void add(int i);

    //修改
    public void update();

    //删除
    public int delete();
}
AccountService.java
package com.stringzhua.service;

/**
* @Author Stringzhua
* @Date 2024/9/13 10:16
* description:
*/
public class AccountServiceImpl implements IAccountService {
    public void add(int i) {
      System.out.println("service的add方法" + i);
//      int a = 10 / 0;//模拟异常
    }

    public void update() {
      System.out.println("service的update方法");
    }

    public int delete() {
      System.out.println("service的delete方法");
      return 0;
    }
}
Logger层:
Logger.java
package com.stringzhua.utils;

import org.aspectj.lang.ProceedingJoinPoint;

/**
* @Author Stringzhua
* @Date 2024/9/13 10:17
* description:
*/
public class Logger {
    //前置通知
    public void beforeMethod() {
      System.out.println("前置通知===>日志类logger中调用printLogger方法进行日志记录");
    }

    //返回通知
    public void returnMethod() {
      System.out.println("返回通知===>日志类logger中调用printLogger方法进行日志记录");
    }

    //异常通知
    public void throwMethod() {
      System.out.println("异常通知===>日志类logger中调用printLogger方法进行日志记录");
    }

    //后置通知
    public void afterMethod() {
      System.out.println("后置通知===>日志类logger中调用printLogger方法进行日志记录");
    }

    //环绕通知
    public Object aroundMethod(ProceedingJoinPoint pjp) {
      Object object = null;//保存主业务方法的返回值
      try {
            //1.前置通知
            System.out.println("环绕通知===>前置通知");

            Object[] objects = pjp.getArgs();//主业务方法的参数
            object = pjp.proceed(objects);//调用主业务方法

            //2.返回通知
            System.out.println("环绕通知===>返回通知");
      } catch (Throwable e) {
            e.printStackTrace();
            //3.异常通知
            System.out.println("环绕通知===>异常通知");
      } finally {
            //4.后置通知
            System.out.println("环绕通知===>后置通知");
      }
      return object;
    }
}
applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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 https://www.springframework.org/schema/aop/spring-aop.xsd">

    <bean id="service" class="com.stringzhua.service.AccountServiceImpl"></bean>

    <bean id="logger" class="com.stringzhua.utils.Logger"></bean>

    <!--    前置通知,开启aop-->
    <aop:config>
      <!--      配置切面-->
      <aop:aspect id="aopAspect" ref="logger">
            <!--            切点-->
            <aop:pointcut id="point" expression="execution( * com.stringzhua.service.*.*(..))"/>
            <!--            通知-->
            <aop:before method="beforeMethod" pointcut-ref="point"></aop:before>
            <aop:after-returning method="returnMethod" pointcut-ref="point"></aop:after-returning>
            <aop:after-throwing method="throwMethod" pointcut-ref="point"></aop:after-throwing>
            <aop:after method="afterMethod" pointcut-ref="point"></aop:after>

            <aop:around method="aroundMethod" pointcut-ref="point"></aop:around>
      </aop:aspect>
    </aop:config>
</beans>
单元测试:
package com.stringzhua.test;

import com.stringzhua.service.IAccountService;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

/**
* @Author Stringzhua
* @Date 2024/9/13 10:23
* description:
*/
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:applicationContext.xml")
public class Test01 {
    @Autowired
    IAccountService service;

    @Test
    public void test1() {
      service.add(1);
//      System.out.println("=======");
//      service.delete();
//      System.out.println("=======");
//      service.update();
    }

}
正常情况:

[*]
https://img-blog.csdnimg.cn/img_convert/42976777277079097a52511e6568715d.png

[*]
https://img-blog.csdnimg.cn/img_convert/c8711d94ce54ea0dcda31725eb54f671.png
异常情况:

[*]
https://img-blog.csdnimg.cn/img_convert/f71e9b8b135ca2bfeda6c05e0fca85b0.png
https://img-blog.csdnimg.cn/img_convert/8574961cdf7af05683bc7b253b7a90b5.png

[*]
https://img-blog.csdnimg.cn/img_convert/4c59cf624898d079999da5b6baa6df63.png
https://img-blog.csdnimg.cn/img_convert/75651df096334cde92cdf9fd29091e11.png
注解实现日记记载

项目布局:
https://img-blog.csdnimg.cn/img_convert/cbbc9887225557fde4b7b0b47130c87d.png
pom.xml
<dependencies>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-context</artifactId>
      <version>5.3.25</version>
    </dependency>

    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-test</artifactId>
      <version>5.3.25</version>
    </dependency>

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.aspectj</groupId>
      <artifactId>aspectjweaver</artifactId>
      <version>1.8.7</version>
    </dependency>
</dependencies>
Service层:
IAccountService.java
package com.stringzhua.service;

/**
* @Author Stringzhua
* @Date 2024/9/13 11:36
* description:
*/
public interface IAccountService {
    //新增
    public void add(int i);

    //修改
    public void update();

    //删除
    public int delete();
}
AccountServiceImpl.java
package com.stringzhua.service;

import org.springframework.stereotype.Service;

/**
* @Author Stringzhua
* @Date 2024/9/13 11:36
* description:
*/
@Service
public class AccountServiceImpl implements IAccountService{
    public void add(int i) {
      System.out.println("service的add方法" + i);
//      int a = 10 / 0;//模拟异常
    }

    public void update() {
      System.out.println("service的update方法");
    }

    public int delete() {
      System.out.println("service的delete方法");
      return 0;
    }
}
Utils包下的Logger.java
package com.stringzhua.utils;

import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.*;
import org.springframework.stereotype.Component;

/**
* @Author Stringzhua
* @Date 2024/9/13 11:38
* description:
*/
@Component
@Aspect//切面
public class Logger {
    @Pointcut("execution( * com.stringzhua.service.*.*(..)))")
    public void point(){}

    //前置通知
//    @Before("point()")
    public void beforeMethod() {
      System.out.println("前置通知===>日志类logger中调用printLogger方法进行日志记录");
    }

    //返回通知
//    @AfterReturning("point()")
    public void returnMethod() {
      System.out.println("返回通知===>日志类logger中调用printLogger方法进行日志记录");
    }

    //异常通知
//    @AfterThrowing("point()")
    public void throwMethod() {
      System.out.println("异常通知===>日志类logger中调用printLogger方法进行日志记录");
    }

    //后置通知
//    @After("point()")
    public void afterMethod() {
      System.out.println("后置通知===>日志类logger中调用printLogger方法进行日志记录");
    }

    //环绕通知
    @Around("point()")
    public Object aroundMethod(ProceedingJoinPoint pjp) {
      Object object = null;//保存主业务方法的返回值
      try {
            //1.前置通知
            System.out.println("环绕通知===>前置通知");

            Object[] objects = pjp.getArgs();//主业务方法的参数,返回被通知方法参数列表
            object = pjp.proceed(objects);//调用主业务方法

            //2.返回通知
            System.out.println("环绕通知===>返回通知");
      } catch (Throwable e) {
            e.printStackTrace();
            //3.异常通知
            System.out.println("环绕通知===>异常通知");
      } finally {
            //4.后置通知
            System.out.println("环绕通知===>后置通知");
      }
      return object;
    }
}
applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/aop https://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd">
    <!--    扫描注解-->
    <context:component-scan base-package="com.stringzhua"></context:component-scan>
    <!--    开启spring注解的aop动态代理-->
    <aop:aspectj-autoproxy></aop:aspectj-autoproxy>
</beans>
单元测试:
Test.java
package com.stringzhua.test;

import com.stringzhua.service.IAccountService;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

/**
* @Author Stringzhua
* @Date 2024/9/13 11:39
* description:
*/
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:applicationContext.xml")
public class Test01 {
    @Autowired
    IAccountService service;

    @Test
    public void test01() {
      service.add(1);
    }
}

正常情况:
https://img-blog.csdnimg.cn/img_convert/e186b42b2b2aa5e1c036a00abb4f9c12.png
异常情况:
https://img-blog.csdnimg.cn/img_convert/bdc563223386bc99a897d98896a91a27.png
https://img-blog.csdnimg.cn/img_convert/f092597168d42e3152f6355980c6e065.png
口试题:

⭐spring 框架怎样解决循环依靠?

循环依靠题目是指∶ 类与类之间的依靠关系形成了闭环,就会导致循环依靠题目的产生。
Spring使用三级缓存来解决循环依靠https://img-blog.csdnimg.cn/img_convert/82a492d54bd03b4aefa01ee36a1168c7.pnghttps://img-blog.csdnimg.cn/img_convert/7626a30a3c01f65f211531afd71e2d34.png
Spring 框架中有哪些注解?

用于声明 bean 的注解:


[*]@Component:定义通用bean的注解,可标注任意类为 bean。如果一个 bean 不知道属于 哪个层,可以使用 @component 注解标注
[*]@Repository:定义数据访问层bean的注解
[*]@Service:定义业务层bean的注解
[*]@Controller:定义控制器bean的注解
用于注入的注解:


[*]@Autowired:按类型主动注入
[*]@Qualifier:按名称主动注入
声明配置、扫描、启用特性的注解:


[*]@Configuration:声明配置类
[*]@ComponentScan:组件扫描
[*]@EnablesScheduling:启用任务调度
[*]@EnableAspectJAutoProxy:启用主动代理工厂
⭐Spring 框架中用到的设计模式

工厂模式:spring 使用工厂模式,通过 Beanfactory 或 ApplicationContext 来创建对象
单例模式::bean 默认作用域为单例,按照单例设计模式进行设计实现
计谋模式:resource 的实现类,针对不同的资源文件,实现了不同方式的资源获取计谋
代理模式:spring 的 aop 的实现依靠动态代理(jdk的反射和cglib),通过为对象提供代理,来控制对象的访问,作用:中介隔离,方法加强,分为动态代理和静态代理
模板方法:Spring 提供了 JdbcTemplate,RedisTemplate等模板对象,将相同的操作步骤进行封装
适配器模式:Spring AOP的加强或通知( Advice )使用到了适配器模式,Spring MVC 中也用到了适配器模式适配Controller

Spring 框架中AOP的基本理解

关键字: AOP名词解释,AOP实现原理(动态代理)


[*]AOP(aspect-oriented programming :面向切面编程):将那些与业务无关,却为业务模块所同时调用的逻辑(例如事务处理、日记管理、权限控制等)封装抽取成一个可重用的模块,这个模块被定名为“切面”(aspect),便于减少体系的重复代码,低落模块间的耦合度,并有利于将来的可拓展性和可维护性
[*]Spring AOP 基于动态代理实现∶

[*]如果被代理的对象,已经实现某个接口,则spring aop 会使用jdk proxy(反射),基于接口的方式,创建代理对象(jdk 动态代理的核心是 invocationhandler 接口和 proxy类)
[*]如果被代理的对象,没有实现某个接口,这时候 spring aop 会使用 cglib,基于继续的方式,生成一个被代理对象的子类来作为代理(cglib 动态代理的核心是 methodinterceptor 接口和 enhancer 类)


⭐Spring AOP和 AspectJ AOP有什么区别?

关键字:加强方式的差别(运行时、编译时),实现方式的差别(动态代理、字节码操作)


[*]Spring AOP 已经集成了 AspectJ,AspectJ是一个 Java 技术生态体系中实现 aop编程思想的独立框架; AspectJ相比于Spring AOP功能更加强大,但是Spring AOP相对来说更简朴更容易;
[*]Spring AOP属于运行时加强,而AspectJ是编译时加强
[*]Spring AOP 基于动态代理( Proxying ),而 AspectJ基于字节码操作( Bytecode Manipulation )
[*]如果项目中的切面代码比较少,两者性能差别不大。如果切面代码太多的话,最好选择 AspectJ,因为基于字节码操作的缘故,AspectJ比 Spring AOP 从性能上要快很多;
Spring AOP有哪些通知类型?

关键字: 分别介绍每种通知的实现接口,执行方式


[*]前置通知∶ 实现 MethodBeforeAdvice 接口,在目标方法调用前,执行通知;
[*]围绕通知∶ 实现 MethodInterceptor 接口,是一个包围目标方法的通知。围绕通知可以在方法用前后完成自定义的举动;
[*]后置通知∶ 实现 AfterReturningAdvice 接口,在目标方法调用后,执行通知(如果方法抛常,则不执行通知);
[*]最终通知:实现了AfterReturingAdvice接口,在目标方法调用后,执行通知;
[*]异常通知:实现 ThrowsAdvice 接口,在方法抛出异常时,执行通知;
AOP通知类型**
**** AOP将抽取出来的共性功能称为通知;通知类型:以通知在上下文中的具体位置作为划分**


[*] 前置通知(Before)
[*] 后置通知(After)
[*] 返回通知(After-returning)
[*] 异常通知(After-throwing)
[*] 围绕通知(Around)
⭐Spring 管理事务的方式有几种?



[*]编程式事务:在代码中硬编码(不保举使用):通过 TransactionTemplate 大概 TransactionManager 手动管理事务,现实应用中很少使用,用于理解 spring 事务管理
[*]声明式事务:在 xml 配置文件大概基于注解 @Transactional (保举使用),通过 AOP 实现。
⭐Spring事务中有哪几种事务传播举动?



[*]事务传播举动是为相识决业务层方法之间互相调用时,产生事务题目
[*]当事务方法被另一个事务方法调用时,必须指定事务应该怎样传播。
[*]比如:方法可能继续在现有事务中运行,也可能开启一个新事务,并在本身的事务中运行。
[*]事务传播举动有如下分类:

[*]TransactionDefinition.propagation_Required:
如果当前存在事务,则参加该事务;如果当前没有事务,则创建一个新的事务。
@transaction注解默认使用的事务传播

[*]TransactionDefinition.propagation_Requires_NEW:
创建一个新的事务,如果当前存在事务,则把当前事务挂起。也就是说不管外部方法是否开启事务,propagation.requires_new 修饰的内部方法会新开启本身的事务,且开启的事务相互独立,互不干扰。

[*]TransactionDefinition.propagation_Nested:
如果当前存在事务,则创建一个事务作为当前事务的嵌套事务来运行;如果当前没有事务,等价于 transactiondefinition.propagatton_required。

[*]Transactiondefinition.propagation_Mandatory:
如果当前存在事务,则参加该事务;如果当前没有事务,则抛出异常。(mandatory: 代逼迫性)

[*]TransactionDefinition.propagation_Supports:
如果当前存在事务,则参加该事务;如果当前没有事务,则以非事务的方式继续运行。

[*]TransactionDefinition.propagation_Not_Supported:
以非事务方式运行,如果当前存在事务,则把当前事务挂起

[*]Transactiondefinition.propagation_Never:
以非事务方式运行,如果当前存在事务,则抛出异常

⭐Spring 事务中有哪几种事务隔离级别?


[*]TransactionDefition.isolation_default 默认隔离级别
使用当前数据库的默认隔离级别,MySQL 默认采用的是可重复读repeatable_read 隔离级别。oracle 默认采用的是读已提交 read_coommitted 隔离级别

[*]TransactionDefinition.isolation_read_uncommited 读未提交:
最低的隔离级别,允许读取尚未提交的数据变动,可能会导致脏读、幻读或不可重复读。

[*]TransactionDefinition.isolation_read_commited 读已提交:
允许读取并发事务已经提交的数据,可以阻止脏读,但是幻读或不可重复读仍有可能发生。

[*]TransactionDefinition.isolation_repeatable_read 可重复读:
对同一字段的多次读取结果都是一致的,除非数据是被本身事务本身所修改,可以阻止脏读和不可重复读,但幻读仍有可能发生。

[*]transactiondefinition.isolation_serialzable 串行化:
最高的隔离级别,完全服从 ACID 的隔离级别。全部的事务依次逐个执行,这样事务之间就完可能产生干扰,也就是说,该级别可以防止脏读、不可重复读以及幻读。但是这将严峻影响程序的性能。通常情况下也不会用到该级别。
⭐Spring 事务在什么情况下会失效?



[*]1.数据库不支持事务
Spring 事务收效的前提是所连接的数据库要支持事务,如果底层的数据库都不支持事务,则spring的事务肯定会失效。
例如:如果使用的数据库为mysql,而且选用了myisan 存储引擎,则 spring 的事务就会失效


[*]2.事务方法未被Spring管理
如果事务方法地点的类没有加载到 Spring IOC 容器中,也就是说,事务方法地点的类没有被Spring管理,则Spring事务会失效。
例如:ProductService类上没有标注@Service注解,Product的实例没有加载到Spring IOC容器中,就会造成updateProductStockCountById()方法的事务在Spring中失效。
public class ProductServie{
@AutoWired
private ProductDao productdao;

@Transactional(propagation = Propagetion.REQUIRES_NEW)
public void updateProductStockCountById(Integer stockCount,Long id){
    productDao.updateProductStockCountById(stockCount,id);
}
}


[*]3.方法没有被public修饰
如果事务地点的方法没有被 public 修饰,此时 spring 的事务会失效。
例如:固然在ProductService上标注了@Service注解,同时updateProductStockCountById()方法上标注了@Transactional(propagation = Propagation.REQUIRES_NEW)注解。
但是,由于updateProductStockCountById()方法为内部的私有方法(使用private修饰),那么此时的updateProductStockCountById()方法的事务会在Spring中失效。
@Service
public class ProductService {
    @Autowired
    private ProductDao productDao;

    @Transactional(propagation = Propagation.REQUIRES_NEW)
    private void updateProductStockCountById(Integer stockCount, Long id) {
      productDao.updateProductStockCountById(stockCount, id);
    }
}


[*]4.同一类中方法相互调用
如果同一个类中的两个方法分别为a和b,方法a上没有添加事务注解,方法b上添加了 @transactional 事务注解,方法a调用方法b,则方法b的事务会失效。
https://img-blog.csdnimg.cn/img_convert/5b91207515f21a7ed00fd3872405cbc0.png


[*]5.未配置开启事务管理器
如果项目中没有配置Spring的事务管理器,纵然使用了Spring的事务管理功能,Spring的事务也不会收效。


[*]6.方法的事务传播类型不支持事务
如果内部方法的事务传播类型为不支持事务的传播类型,则内部方法的事务在 Spring中会失效。
例如:b方法支持事务,b调用了a方法,由于 a方法的事务传播类型为 not supported,不支持事务,则 a方法的事务会在 spring 中失效。


[*]7.不正确的捕获异常
不正确的捕获异常也会导致 spring 的事务失效。
例如: a方法中使用try-catch 代码块捕获了异常,纵然 a方法内部会抛出异常,但也会被 catch 代码块捕获到,此时 a方法的事务会提交而不会回滚,而且 submitorder()方法的事务会提交而不会回滚,这就造成了 spring 事务的回滚失效题目。


[*]8.错误的标注异常类型
如果在 @transactional注解中标注了错误的异常类型,则 Spring 事务的回滚会失效。
图片版

https://img-blog.csdnimg.cn/img_convert/473d830f46ed07a5c244f24cfd5ee75d.png
https://img-blog.csdnimg.cn/img_convert/da4dfa5f69be7e205bb3f839cc080fdb.png
https://img-blog.csdnimg.cn/img_convert/b7d0addaee1a1394e54261bb9ced7a03.png
https://img-blog.csdnimg.cn/img_convert/7201da45d2480cda9d3dc25e4951d26d.png
https://img-blog.csdnimg.cn/img_convert/ff5a6d99d31cbcb428e1d160f623eed9.pnghttps://img-blog.csdnimg.cn/img_convert/a3e30074dfa06b370a16ba3048a5d807.png

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页: [1]
查看完整版本: Spring3(代理模式 Spring1案例补充 Aop 口试题)