• SpringAOP的使用总结


     B站

    【尚硅谷新版SSM框架全套视频教程,Spring6+SpringBoot3最新SSM企业级开发】https://www.bilibili.com/video/BV1AP411s7D7?p=47&vd_source=726decf3eb63273901caae35ad437124

    AOP即面向切面编程,通过使用一定的技术将非核心方法抽离出来,放入统一的类中进行管理,在目标方法(核心方法)需要使用对应的非核心方法时,再将非核心方法插入的核心方法中,最后形成一个整合类进行使用.

    需要导入相应的依赖

    
        org.springframework
        spring-context
        5.3.25
    

    spring-context依赖中包含了spring-aop依赖

    
        org.springframework
        spring-aspects
        5.3.25
    

    方式一:通过类的接口实现AOP操作

    创建接口:

    1. @Service
    2. public interface Colculer {
    3. int Plus(int a,int b);
    4. int subtract(int a,int b);
    5. int multiply(int a,int b);
    6. int divide(int a,int b);
    7. }

    创建实现类:

    1. @Component
    2. public class Colcu implements Colculer {
    3. @Override
    4. public int Plus(int a,int b) {
    5. int result=a+b;
    6. return result;
    7. }
    8. @Override
    9. public int subtract(int a, int b) {
    10. return a-b;
    11. }
    12. @Override
    13. public int multiply(int a, int b) {
    14. return a*b;
    15. }
    16. @Override
    17. public int divide(int a, int b) {
    18. return a/b;
    19. }
    20. }

    创建配置类:(注意配置类中需要声明开启对adpect的注解)

    1. //表示我这个是一个配置类
    2. @Configuration
    3. //指定我要扫描的位置
    4. @ComponentScan({"Com.su"})
    5. //开启对aspect的注解
    6. @EnableAspectJAutoProxy
    7. public class ConfigClass {
    8. }

    创建增强类:(@aspect注解表示他是一个切面)

    1. @Component
    2. @Aspect
    3. public class AopLog {
    4. //前置通知
    5. @Before("execution(* Com.su.*.*(..))")
    6. public void log(){
    7. System.out.println("输出了");
    8. }
    9. }

    在测试类中调用被增强后的类中的方法:

    1. //@SpringJUnitConfig(value = ConfigClass.class)
    2. @ContextConfiguration(classes = {ConfigClass.class})
    3. @RunWith(SpringJUnit4ClassRunner.class)
    4. public class MyTest {
    5. @Autowired
    6. private Colculer colculer;
    7. @Test
    8. public void test01(){
    9. int result = colculer.Plus(2, 6);
    10. System.out.println("a+b="+result);
    11. }
    12. }

     调用方法后发现被调用的方法被增强了结果如下:

    1. 九月 08, 2023 10:39:33 上午 org.springframework.test.context.support.AbstractTestContextBootstrapper getDefaultTestExecutionListenerClassNames
    2. 信息: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
    3. 九月 08, 2023 10:39:33 上午 org.springframework.test.context.support.AbstractTestContextBootstrapper getTestExecutionListeners
    4. 信息: Using TestExecutionListeners: [org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@3abbfa04, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@57fffcd7, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@31ef45e3, org.springframework.test.context.support.DirtiesContextTestExecutionListener@598067a5, org.springframework.test.context.event.EventPublishingTestExecutionListener@3c0ecd4b]
    5. 输出了
    6. a+b=8

    AOP增强类的解释:

    切面:可以理解为创建的这个aspect注解类就是切面

    切点:被选中的方法即为切点execution(方法的全路径)

    增强:方法中的具体代码

     拓展1:

    注解的形式开启AOP

    1. "1.0" encoding="UTF-8"?>
    2. <beans xmlns="http://www.springframework.org/schema/beans"
    3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
    4. 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">
    5. <aop:aspectj-autoproxy/>
    6. beans>

     配置类:

    1. //开启对aspect的注解
    2. @EnableAspectJAutoProxy

    拓展2:

    拓展3:

    在测试方法中将声明接口改为声明接口实现类

    无法实现对应代理类

    原因:在进行AOP动态代理时,底层会根据类的类型选择对应的代理模式,这个类中有对应的接口,所以代理时会选用JDK动态代理的形式,而JDK代理会根据这个类对应的接口实现一个代理类.

    即代理对象和目标对象是兄弟关系(不很懂!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!)

    来自弹幕的解释(相当于bc都实现了a接口,但bc不是子父类的关系,无法用多态。但是如果没实现接口,代理对象和被增强对象是父子类关系,是可以用多态来接受的)

    通过上面的测试可得:即在IOC容器中真正存储的都是代理对象,不是目标对象

     拓展4:如何在增强类中获取我们的目标信息(只需要在方法中添加一个形参JoinPoint)

    注意是JoinPoint不是JointPoint

    1.获取方法所属的类的信息

    2.获取方法的名称

    3.获取参数的列表

    1. @Component
    2. @Aspect
    3. public class AopLog {
    4. //前置通知
    5. @Before("execution(* Com.su.*.*(..))")
    6. public void log(JoinPoint joinPoint){
    7. //获取方法所属的类的信息
    8. String simpleName = joinPoint.getTarget().getClass().getSimpleName();
    9. //获取方法的名称
    10. String name = joinPoint.getSignature().getName();
    11. //获取参数列表
    12. Object[] args = joinPoint.getArgs();
    13. System.out.println("simpleName是"+simpleName+"name"+name+"args是"+args);
    14. System.out.println("输出了");
    15. System.out.println(simpleName);
    16. }
    17. }

  • 相关阅读:
    STC15W单片机防丢语音报警GPS北斗定位测距双机LORA无线手持可充电
    《C++避坑神器·十九》C++多线程使用,啥也不懂看它就对了
    高频前端面试题汇总之HTML篇
    抖音短视频矩阵系统搭建
    liveData和viewBinding的使用
    从libc-2.27.so[7fd68b298000+1e7000]崩溃回溯程序段错误segfault
    Collection、List和Set接口
    关于ElementUI之动态树+数据表格+分页实例
    Spring源码分析(二):底层架构核心概念解析
    JS基础笔记-关于对象
  • 原文地址:https://blog.csdn.net/qq_54077266/article/details/132755503