• 演示spring AOP的切入表达式重用和优先级问题以及怎么实现基于xml的AOP


    😀前言
    本篇的Spring-AOP系类文章第五篇讲解了演示spring AOP的切入表达式重用和优先级问题以及怎么实现基于xml的AOP

    🏠个人主页:尘觉主页
    在这里插入图片描述

    🧑个人简介:大家好,我是尘觉,希望我的文章可以帮助到大家,您的满意是我的动力😉😉

    在csdn获奖荣誉: 🏆csdn城市之星2名
    ⁣⁣⁣⁣ ⁣⁣⁣⁣ ⁣⁣⁣⁣ ⁣⁣⁣⁣ ⁣⁣⁣⁣ ⁣⁣⁣⁣ ⁣⁣⁣⁣ ⁣⁣⁣⁣ 💓Java全栈群星计划top前5
    ⁣⁣⁣⁣ ⁣⁣⁣⁣ ⁣⁣⁣⁣ ⁣⁣⁣⁣ ⁣⁣⁣⁣ ⁣⁣⁣⁣ ⁣⁣⁣⁣ ⁣⁣⁣⁣ 🤗 端午大礼包获得者

    💕欢迎大家:这里是CSDN,我总结知识的地方,欢迎来到我的博客,感谢大家的观看🥰
    如果文章有什么需要改进的地方还请大佬不吝赐教 先在次感谢啦😊

    💖演示spring AOP的切入表达式重用和优先级问题以及怎么实现基于xml的AOP

    💞AOP-切入点表达式重用

    🤔应用实例

    ● 切入点表达式重用

    为了统一管理切入点表达式,可以使用切入点表达式重用技术。

    ● 应用案例: 在原来的代码上修改即可
    1. 修改SmartAnimalAspect.java

    image-20230805173029980

    
        /**
         * 使用切面编程来替代原来的动态代理类,机制是一样的.
         * @author Administrator
         */
        @Aspect //表示这个类是一个切面类
        @Component //需要加入到IOC 容器
        public class SmartAnimalAspect {
            //=====AOP-切入点表达式重用start ======
            /*
             * 这样定义的一个切入点表达式,就可以在其它地方直接使用
             */
            @Pointcut(value = "execution(public float
                    com.wyxedu.spring.aop.joinpoint.SmartDog.getSum(float, float))")
            public void myPointCut() {
            }
            // @Before(value="execution(public float com.wyxedu.spring.aop.joinpoint.SmartDog.getSum(float, float))")
            @Before(value = "myPointCut()")
            public void showBeginLog(JoinPoint joinPoint) { //前置方法
                //得到方法的签名
                // 调用前置通知对应的方法签名: float com.wyxedu.spring.aop.joinpoint.SmartDog.getSum(float, float)
                Signature signature = joinPoint.getSignature();
                //得到方法名.
                String method_name = signature.getName();
                //得到参数
                Object[] args = joinPoint.getArgs();
                System.out.println("前置通知" + "--调用的方法是" + method_name + "--参数是
                        --" + Arrays.asList(args));
            }
            //@After(value = "execution(public float com.wyxedu.spring.aop.joinpoint.SmartDog.getSum(float, float))")
            @After(value = "myPointCut()")
            public void showFinallyEndLog() {
                System.out.println("最终通知-- AOP-切入点表达式重用");
            }
            /**
             * returning = "res", Object res 名称保持一致
             * @param joinPoint
             * @param res 调用getSum() 返回的结果
             */
            @AfterReturning(value = "execution(public float com.wyxedu.spring.aop.joinpoint.SmartDog.getSum(float, float))",
            returning = "res")
            public void showSuccessEndLog(JoinPoint joinPoint, Object res) {
                System.out.println("返回通知" + "--结果是--" + res);
            }
            @AfterThrowing(value = "execution(public float com.wyxedu.spring.aop.joinpoint.SmartDog.getSum(float, float))", throwing = "throwable")
            public void showExceptionLog(JoinPoint joinPoint, Throwable throwable) {
                System.out.println("异常通知-- 异常信息--" + throwable);
            }
            //=====AOP-切入点表达式重用end ======
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    测试AopJoinPointTest.java

    image-20230805173406696

    🥰AOP-切面优先级问题

    😉应用实例

    ● 切面优先级问题:

    如果同一个方法,有多个切面在同一个切入点切入,那么执行的优先级如何控制.

    ● 基本语法:

    @order(value=n) 来控制 n值越小,优先级越高

    ● 案例说明

    1. 创建\SmartAnimalAspect2.java
    
    @Aspect //表示这个类是一个切面类
    @Order(value = 2)
    @Component //需要加入IOC 容器
    public class SmartAnimalAspect2 {
        /*
         * 这样定义的一个切入点表达式,就可以在其它地方直接使用
         */
        @Pointcut(value = "execution(public float com.wyxedu.spring.aop.joinpoint.SmartDog.getSum(float, float))")
        public void myPointCut() {
        }
        @Before(value = "myPointCut()")
        public void showBeginLog(JoinPoint joinPoint) {
            System.out.println("前置通知SmartAnimalAspect2 showBeginLog");
        }
        @AfterReturning(value = "myPointCut()", returning = "res")
        public void showSuccessEndLog(JoinPoint joinPoint, Object res) {
            System.out.println("返回通知SmartAnimalAspect2 showSuccessEndLog");
        }
        @AfterThrowing(value = "myPointCut()", throwing = "throwable")
        public void showExceptionLog(JoinPoint joinPoint, Throwable throwable) {
            System.out.println("异常通知SmartAnimalAspect2 showExceptionLog");
        }
        @After(value = "myPointCut()")
        public void showFinallyEndLog() {
            System.out.println("最终通知SmartAnimalAspect2 showFinallyEndLog");
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    1. 修改SmartAnimalAspect.java

    image-20230805173922064

    测试

    image-20230805174346020

    1. 如何理解输出的信息顺序,类似Filter 的过滤链式调用机制. (示意图-就比较清楚了.)

    💥注意事项和细节说明

    如何理解输出的信息顺序,类似 Filter 的过滤链式调用机制. (示意图-就比较清楚了.)

    1. 不能理解成:优先级高的每个消息通知都先执行,这个和方法调用机制(和 Filter 过滤器链式调用类似)

    2. 如何理解执行顺序

    img

    😊AOP-基于 XML 配置 AOP

    ● 基本说明:

    前面我们是通过注解来配置 aop 的,在 spring 中,我们也可以通过 xml 的方式来配置 AOP

    😀代码示例

    实现步骤
    1. 创建包com.wyxedu.spring.aop.xml , SmartAnimalable.java 和SmartDog.java 从其它包拷贝即可
    2. 创建SmartAnimalAspect.java , 从com.wyxedu.spring.aop 包拷贝,并去掉所有注解
    具体实现
    1. 创建接口SmartAnimalable
    public interface SmartAnimalable {
        //求和
        float getSum(float i, float j);
        //求差
        float getSub(float i, float j);
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    1. 创建SmartAnimalAspect类注意没有注解
    public class SmartAnimalAspect {
    
    
        public void showBeginLog(JoinPoint joinPoint) {
            //通过连接点对象joinPoint 可以获取方法签名
            Signature signature = joinPoint.getSignature();
            System.out.println("SmartAnimalAspect-XML配置-切面类showBeginLog()[使用的myPointCut()]-方法执行前-日志-方法名-" + signature.getName() + "-参数 "
                    + Arrays.asList(joinPoint.getArgs()));
        }
    
        public void showSuccessEndLog(JoinPoint joinPoint, Object res) {
            Signature signature = joinPoint.getSignature();
            System.out.println("SmartAnimalAspect-XML配置-切面类showSuccessEndLog()-方法执行正常结束-日志-方法名-" + signature.getName() + " 返回的结果是=" + res);
        }
    
    
        public void showExceptionLog(JoinPoint joinPoint, Throwable throwable) {
            Signature signature = joinPoint.getSignature();
            System.out.println("SmartAnimalAspect-XML配置-切面类showExceptionLog()-方法执行异常-日志-方法名-" + signature.getName() + " 异常信息=" + throwable);
        }
    
        public void showFinallyEndLog(JoinPoint joinPoint) {
            Signature signature = joinPoint.getSignature();
            System.out.println("SmartAnimalAspect-XML配置-切面类showFinallyEndLog()-方法最终执行完毕-日志-方法名-" + signature.getName());
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    1. 创建SmartDog注意没有注解
    public class SmartDog implements SmartAnimalable {
        @Override
        public float getSum(float i, float j) {
            float result = i + j;
            //result = 1 / 0; //模拟一个算术异常
            System.out.println("方法内部打印result = " + result);
            return result;
        }
    
        @Override
        public float getSub(float i, float j) {
            float result = i - j;
            System.out.println("方法内部打印result = " + result);
            return result;
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    1. xml配置
    
    
    
        
        
        
        
        
        
        
            
            
            
            
                
                
                
                
                
                
                
                
                
                
            
        
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31

    测试

    public class AopAspectjXMLTest {
    
        @Test
        public void testAspectByXML() {
    
            ApplicationContext ioc = new ClassPathXmlApplicationContext("beans09.xml");
            SmartAnimalable smartAnimalable =
                    ioc.getBean(SmartAnimalable.class);
    
            smartAnimalable.getSum(10, 2);
        }
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

    😄总结

    本文详细的讲解了spring AOP的切入表达式重用和AOP优先级问题以及AOP怎么实现基于xml的aop

    😍Spring-AOP系类文章
    第一篇-> Spring-AOP的基本介绍以及通过先动态代理方式实现

    第二篇-> Spring-动态代理深入了解

    第三篇-> 再次分析-提出 Spring AOP-真正的AOP

    第四篇-> spring-aop的切入表达式和JoinPoint的使用以及怎么返回通知获取结果和在异常通知中获取异常还有环绕通知

    😁热门专栏推荐
    想学习vue的可以看看这个
    java基础合集
    数据库合集
    redis合集
    nginx合集
    linux合集
    等等等还有许多优秀的合集在主页等着大家的光顾感谢大家的支持

    🤔欢迎大家加入我的社区 尘觉社区

    文章到这里就结束了,如果有什么疑问的地方请指出,诸佬们一起来评论区一起讨论😁
    希望能和诸佬们一起努力,今后我们一起观看感谢您的阅读🍻
    如果帮助到您不妨3连支持一下,创造不易您们的支持是我的动力🤞

  • 相关阅读:
    LSTM+CRF模型
    SQL Server 日期范围按每月一行拆分
    Elasticsearch - What‘s new in 8.3
    YOLOv5项目实战(3)— 如何批量命名数据集中的图片
    小bugs搜集和解决方法,亲测有效(2022-2023)
    Springboot旅游餐饮服务平台r1n3j计算机毕业设计-课程设计-期末作业-毕设程序代做
    英特尔CEO:我们的市场份额不是输给了AMD,而是让给它的
    web学习
    关于ComfyUI的一些Tips
    [附源码]java毕业设计校园闲置物品交易
  • 原文地址:https://blog.csdn.net/apple_67445472/article/details/132122778