AOP的三种实现方式

AOP是Spring中继IOC(面向切面编程)后又一十分重要的概念。AOP,即面向切面编程。使用AOP可以实现在不改变原有的业务逻辑的代码的情况下,在系统上增加一些特殊的功能!即符合面向对象分析的OOP设计原则,对扩展是开放的,对修改是封闭的。
而AOP的底层原理是动态代理模式,而动态代理的底层都是反射,反射使得Java语言有了一定的动态性。

在讲解SpringAOP之前,我们先引入一个需求,详情如图所示:

aopjava实现 java aop实现方式_aopjava实现


分析如下:原来公司的业务逻辑只有增删改查方法,现在公司要求在原有业务方法的基础上增加验证参数,前置日志,后置日志等功能,并且要求符合OOP(开闭原则)原则,即不改变原有的业务逻辑代码实现。

在这里,我采用SpringAOP实现,接下来就一一介绍AOP的三种实现方法。

这里同样是采用Maven构建项目,Maven 是一个十分重要的项目管理工具,可以对 Java 项目进行构建、依赖管理。

三种AOP实现方式的第一步都是导入依赖,首先就需要在pom.xml导入依赖,具体如下所示:

<dependencies>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-aop</artifactId>
            <version>5.2.5.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjweaver</artifactId>
            <version>1.8.13</version>
        </dependency>
    </dependencies>

导入依赖后,还需要搭建环境,即编写公司业务接口(Service)和接口实现类(ServiceImpl)。
接口编写如下所示:

package com.xing.service;

public interface Service {
    public void add();//增加用户
    public void delete();//删除用户
    public void update();//修改用户
    public void query();//查询用户
}

接口实现类如下所示:

package com.xing.service;
public class ServiceImpl implements Service{
    @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("查询了一个用户");
    }
}

完成前两步后,将采用不同的方式实现AOP切面编程。

方式一 使用SpringAPI接口

在SpringAOP中,通过Advice定义横切逻辑,Spring中支持5种类型的Advice:具体如下图所示:

aopjava实现 java aop实现方式_AOP_02


具体的每一个接口的使用,在代码中介绍。

创建一个日志软件包(log),在log中创建BeforeLog类,并实现MethodBeforeAdvice接口和AfterLog类,并实现AfterReturningAdvice接口,具体的实现如下所示:

BeforeLog.java

package com.xing.log;

import org.springframework.aop.MethodBeforeAdvice;

import java.lang.reflect.Method;

public class BeforeLog implements MethodBeforeAdvice {
    @Override
    public void before(Method method, Object[] args, Object target) throws Throwable {
        System.out.println(target.getClass().getName()+"的"+method.getName()+"被执行了");
    }
}

AfterLog.java

package com.xing.log;

import org.springframework.aop.AfterAdvice;
import org.springframework.aop.AfterReturningAdvice;

import java.lang.reflect.Method;

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

现在已经完成了两个很单纯的日志增强类,一个是前置,一个是后置,完成后还并未实现AOP,接下来我们要把这些类都注册到Spring中。
即在resources文件中创建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
        https://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/aop
        https://www.springframework.org/schema/aop/spring-aop.xsd">

<!--    注册bean-->
    <bean id="service" class="com.xing.service.ServiceImpl"/>
    <bean id="log" class="com.xing.log.BeforeLog"/>
    <bean id="afterLog" class="com.xing.log.AfterLog"/>
</beans>

注册service,log和afterLog后,需要注册AOP,以继续完成日志功能。接下来在ApplicationContext.xml继续注册即可,具体如下所示:

<!--    使用原生的Api接口-->
<!--    配置Aop:需要导入Aop的约束-->
    <aop:config>
<!--        切入点
            expression:表达式
            execution(要执行的位置!* * * * *)
-->
        <aop:pointcut id="pointcut" expression="execution(* com.xing.service.ServiceImpl.*(..))"/>
<!--        执行环绕增加-->
        <aop:advisor advice-ref="log" pointcut-ref="pointcut"/>
        <aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/>
    </aop:config>

到此为止,基于SpringAPI接口的实现AOP方式已完成,测试代码由于三种AOP实现方式都一模一样,所以留到最后展示。

方式二 自定义类实现

第一种方式是API接口,第二种方式可以简单一点,刚才的接口如果接口记不住或者接口找不到就没办法实现,那么使用自定义类来实现。
即在log文件中创建DiyPointCut类,在里面定义before前置日志方法和after后置日志方法,具体的实现如下所示:

package com.xing.log;

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

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

书写完自定义类后,需要在ApplicationContext.xml中注册AOP,具体的注册如下所示:

<!--    方式二-->
<bean id="diy" class="com.xing.log.DiyPointCut"/>
    <aop:config>
        <aop:aspect ref="diy">
        <aop:pointcut id="pointcut" expression="execution(* com.xing.service.ServiceImpl.*(..))"/>
        <aop:before method="before" pointcut-ref="pointcut"/>
        <aop:after method="after" pointcut-ref="pointcut"/>
        </aop:aspect>
    </aop:config>

简单分析一下,<aop:aspect ref=“diy”>是定义自定义类为切面,<aop:before method=“before” pointcut-ref=“pointcut”/>是定义diy里面的before方法为前置日志,<aop:after method=“after” pointcut-ref=“pointcut”/>定义diy里面的after方法为后置日志。
注册完成后,测试即可查看效果!

方式三 注解实现AOP

前面讲解了两种方式,现在来介绍第三种方式,这种方式采用注册实现,注解实现其实就是用注解来替代之前的xml配置。
即可以用@Aspect来标注类,表示该类为一个切面,用@Before标注类中方法,表示该方法为前置方法,注解中的参数即为切入点的位置。
接下来在Log类中创建AnnotationPointCut,用注解实现AOP,具体如下所示:

package com.xing.log;

import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
//使用注解实现AOP
@Aspect//注解标注这个类是一个切面
public class AnnotationPointcut {
    @Before("execution(* com.xing.service.ServiceImpl.*(..))")
    public void before(){
        System.out.println("方法执行前");
    }

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

接下来需要在ApplicationContext.xml中注册AnnotationPointCut类,以及开启注解支持,具体如下所示:

<bean id="annotationPointcut" class="com.xing.log.AnnotationPointcut"/>
    <aop:aspectj-autoproxy/>

三种方式都介绍完了,最后来展示测试类,即创建MyTest测试类,具体如下所示:

import com.xing.service.Service;
import com.xing.service.ServiceImpl;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MyTest {
    public static void main(String[] args) {
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        //动态代理代理的是接口
        Service service = context.getBean("service", Service.class);
        service.add();
    }
}

以上就是AOP的三种实现方式!