11 AOP

作者: Messix_1102 | 来源:发表于2023-07-18 15:17 被阅读0次

    11.1 什么是AOP

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


    AOP图例

    11.2 AOP在Spring中的作用

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

    • 横切关注点:跨越应用程序多个模块的方法或功能。即是,与我们业务逻辑无关的,但是我们需要关注的部分,就是横切关注点。如日志,安全,缓存,事物等等...
    • 切面(Aspect):横切关注点被模块化的特殊对象。他是一个类,如Log类。
    • 通知(Advice):切面必须要完成的工作。即,类中的一个方法,如Log中的方法。
    • 目标(Target):被通知的对象,接口或方法。
    • 代理(Proxy):向目标对象应用通知之后创建的对象,即为生成的代理类。
    • 切入点(PoinCut):切面通知执行的 ”地点“ 的定义。
    • 连接点(JoinPoint):与切入点匹配的执行点。
    名词解释

    Spring AOP中,通过Advice定义横切的逻辑,Spring中支持5种类型的Advice:


    Advice

    即AOP在不改变原有代码的情况下,取增加新的功能。

    11.3 使用Spring实现AOP

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

    <!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
    <dependency>
        <groupId>org.aspectj</groupId>
        <artifactId>aspectjweaver</artifactId>
        <version>1.8.9</version>
        <scope>runtime</scope>
    </dependency>
    

    配置

    <?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
            https://www.springframework.org/schema/beans/spring-beans.xsd
            http://www.springframework.org/schema/aop
            https://www.springframework.org/schema/aop/spring-aop.xsd">
    
        <!-- more bean definitions go here -->
    </beans>
    

    方式一:使用Spring 的API接口【SpringAPI接口实现】

    接口实现类

    package com.hunter.log;
    import org.springframework.aop.MethodBeforeAdvice;
    import java.lang.reflect.Method;
    public class Log implements MethodBeforeAdvice {
    
        // method: 要执行目标对象的方法
        // objects: 参数
        // target: 目标对象
        @Override
        public void before(Method method, Object[] args, Object target) throws Throwable {
            System.out.println("【Debug】" + target.getClass().getName() + "的" + method.getName());
        }
    }
    
    package com.hunter.log;
    import org.springframework.aop.AfterReturningAdvice;
    import java.lang.reflect.Method;
    
    public class AfterLog implements AfterReturningAdvice {
    
        // returnvalue 返回值
        @Override
        public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable {
            System.out.println("【Debug】执行了" + method.getName() + "返回结果为:" + returnValue);
        }
    }
    

    配置

        <!-- 方式一:使用原生Spring API 接口 -->
        <!-- 配置AOP:需要导入aop的约束 -->
        <aop:config>
            <!-- 切入点
            expression: 表达式, execution(* * * * * *)
            第一个 * 号: 表示返回值的类型任意;
            com.hunter.service:包名
            UserServiceImpl:类名
            *(..): 任何方法
            -->
            <aop:pointcut id="pointcut" expression="execution(* com.hunter.service.UserServiceImpl.*(..) )"/>
            <!-- 执行环绕增加 -->
            <aop:advisor advice-ref="log" pointcut-ref="pointcut"></aop:advisor>
            <aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"></aop:advisor>
        </aop:config>
    

    方式二:自定义类来实现AOP【主要是切面定义】

    自定义切面

    package com.hunter.diy;
    
    public class DiyPointCut {
        public void before(){
            System.out.println("========方法执行前========");
        }
    
        public void after(){
            System.out.println("========方法执行后========");
        }
    }
    

    配置

        <!-- 方式二:自定义类 -->
        <bean id="diy" class="com.hunter.diy.DiyPointCut"></bean>
        <aop:config>
            <!--自定义切面,ref要引用的类-->
            <aop:aspect ref="diy">
                <!--切入点-->
                <aop:pointcut id="point" expression="execution(* com.hunter.service.UserServiceImpl.*(..))"/>
                <!--通知-->
                <aop:before method="before" pointcut-ref="point"/>
                <aop:after method="after" pointcut-ref="point"/>
            </aop:aspect>
        </aop:config>
    

    方式三:使用注解实现!

    自定义切面

    package com.hunter.diy;
    import org.aspectj.lang.ProceedingJoinPoint;
    import org.aspectj.lang.Signature;
    import org.aspectj.lang.annotation.After;
    import org.aspectj.lang.annotation.Around;
    import org.aspectj.lang.annotation.Aspect;
    import org.aspectj.lang.annotation.Before;
    
    // 方式三:使用注解方式实现AOP
    @Aspect 
    public class AnnotationPointCut {
        @Before("execution(* com.hunter.service.UserServiceImpl.*(..))")
        public void before(){
            System.out.println("==========方法执行前===========");
        }
    
        @After("execution(* com.hunter.service.UserServiceImpl.*(..))")
        public void after(){
            System.out.println("==========方法执行后===========");
        }
    
        // 在环绕增强中,我们可以给定一个参数,代表我们要获取处理切入的点
        @Around("execution(* com.hunter.service.UserServiceImpl.*(..))")
        public void Around(ProceedingJoinPoint jp) throws Throwable{
            System.out.println("==========环绕前===========");
            Signature signature = jp.getSignature();
            System.out.println("signature=" + signature);
            // 执行方法
            Object proceed = jp.proceed();
            System.out.println("==========环绕后===========");
            System.out.println(proceed);
        }
    }
    

    配置

        <!--方式三-->
        <bean id="annotationPointCut" class="com.hunter.diy.AnnotationPointCut"></bean>
        <!--开启注解支持 JDK(默认proxy-target-class="false") cglib(proxy-target-class="true")-->
        <aop:aspectj-autoproxy proxy-target-class="false"/>
    

    注意必须要开启注解支持:<aop:aspectj-autoproxy proxy-target-class="false"/>

    相关文章

      网友评论

          本文标题:11 AOP

          本文链接:https://www.haomeiwen.com/subject/onwtcrtx.html