AOP的三种实现方式

AOP的三种实现方式

什么是AOP

​ AOP(Aspect Oriented Programming),即面向切面编程,可以说是OOP(Object Oriented Programming,面向对象编程)的补充和完善。OOP引入封装、继承、多态等概念来建立一种对象层次结构,用于模拟公共行为的一个集合。不过OOP允许开发者定义纵向的关系,但并不适合定义横向的关系,例如日志功能。日志代码往往横向地散布在所有对象层次中,而与它对应的对象的核心功能毫无关系对于其他类型的代码,如安全性、异常处理和透明的持续性也都是如此,这种散布在各处的无关的代码被称为横切(cross cutting),在OOP设计中,它导致了大量代码的重复,而不利于各个模块的重用。

​ AOP技术恰恰相反,它利用一种称为"横切"的技术,剖解开封装的对象内部,并将那些影响了多个类的公共行为封装到一个可重用模块,并将其命名为"Aspect",即切面。所谓"切面",简单说就是那些与业务无关,却为业务模块所共同调用的逻辑或责任封装起来,便于减少系统的重复代码,降低模块之间的耦合度,并有利于未来的可操作性和可维护性。

​ 使用"横切"技术,AOP把软件系统分为两个部分:核心关注点横切关注点。业务处理的主要流程是核心关注点,与之关系不大的部分是横切关注点。横切关注点的一个特点是,他们经常发生在核心关注点的多处,而各处基本相似,比如权限认证、日志、事物。AOP的作用在于分离系统中的各种关注点,将核心关注点和横切关注点分离开来。

20201005-212535-0087.png

AOP核心概念

1、横切关注点

对哪些方法进行拦截,拦截后怎么处理,这些关注点称之为横切关注点

2、切面(aspect)

类是对物体特征的抽象,切面就是对横切关注点的抽象

3、连接点(joinpoint)

被拦截到的点,因为Spring只支持方法类型的连接点,所以在Spring中连接点指的就是被拦截到的方法,实际上连接点还可以是字段或者构造器

4、切入点(pointcut)

对连接点进行拦截的定义

5、通知(advice)

所谓通知指的就是指拦截到连接点之后要执行的代码,通知分为前置、后置、异常、最终、环绕通知五类

6、目标对象

代理的目标对象

7、织入(weave)

将切面应用到目标对象并导致代理对象创建的过程

8、引入(introduction)

在不修改代码的前提下,引入可以在运行期为类动态地添加一些方法或字段

实现AOP

  • 首先创建UserService接口实现增删改查
package com.wuxin.service;

public class UserServiceImpl implements UserService {
    public void add() {
        System.out.println("新增一个用户");
    }

    public void delete() {
        System.out.println("删除一个用户");
    }

    public void update() {
        System.out.println("修改一个用户");
    }

    public void query() {
        System.out.println("查询一个用户");
    }
}
  • 创建UserServiceImpl类实现UserService接口
package com.wuxin.service;

public class UserServiceImpl implements UserService {
    public void add() {
        System.out.println("新增一个用户");
    }

    public void delete() {
        System.out.println("删除一个用户");
    }

    public void update() {
        System.out.println("修改一个用户");
    }

    public void query() {
        System.out.println("查询一个用户");
    }
}

一、原生API实现AOP

  • 创建一个BeforeLog类作为前置方法
package com.wuxin.log;

import org.springframework.aop.MethodBeforeAdvice;

import java.lang.reflect.Method;

public class BeforeLog implements MethodBeforeAdvice {
    public void before(Method method, Object[] objects, Object o) throws Throwable {
        System.out.println("执行了"+method.getClass().getName()+"方法");
    }
}
  • 创建一个AfterLog作为后置方法
package com.wuxin.log;

import org.springframework.aop.AfterReturningAdvice;

import java.lang.reflect.Method;

public class AfterLog implements AfterReturningAdvice {
    public void afterReturning(Object o, Method method, Object[] objects, Object o1) throws Throwable {
        System.out.println(method.getClass().getName()+"方法,执行完毕" + method.getName() +"返回值为:"+ o);
    }
}
  • 定义xml配置文件,实现前置和后置的织入
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:context="http://www.springframework.org/schema/context"
       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-3.0.xsd
    http://www.springframework.org/schema/aop
    https://www.springframework.org/schema/aop/spring-aop.xsd">

        <!--1.原生API-->
    <bean id="after" class="com.wuxin.log.AfterLog"/>
    <bean id="before" class="com.wuxin.log.BeforeLog"/>
    <bean id="userServiceImpl" class="com.wuxin.service.UserServiceImpl"/>

    <aop:config>
        <aop:pointcut id="point" expression="execution(* com.wuxin.service.UserServiceImpl.*(..))"/>
        <aop:advisor advice-ref="after" pointcut-ref="point"/>
        <aop:advisor advice-ref="before" pointcut-ref="point"/>
    </aop:config>
    
</beans>
  • 创建测试类,测试是否织入成功
import com.wuxin.service.UserService;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MyTest {
    public static void main(String[] args) {
        ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        UserService userServiceImpl = (UserService) context.getBean("userServiceImpl");
        userServiceImpl.add();

    }
}
  • 测试结果

20201005-213459-0856.png

二、自定义方法实现AOP

  • 创建DivLog方法
package com.wuxin.log;

public class DivLog {
    public void BeforeLog(){
        System.out.println("前置通知");
    }
    public void AfterLog(){
        System.out.println("后置通知");
    }
}
  • 创建XML解析
<!--2.自定义方法实现-->
<bean id="divLog" class="com.wuxin.log.DivLog"/>
<aop:config>
    <aop:aspect ref="divLog">
        <aop:pointcut id="point" expression="execution(* com.wuxin.service.UserServiceImpl.*(..))"/>
        <aop:after method="AfterLog" pointcut-ref="point"/>
        <aop:before method="BeforeLog" pointcut-ref="point"/>
    </aop:aspect>
</aop:config>
  • 测试结果

20201005-224600-0019.png

三、注解实现AOP

  • 创建AnnLog并注解
package com.wuxin.log;

import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;

@Aspect
public class AnnLog {

    @After("execution(* com.wuxin.service.UserServiceImpl.*(..))")
    public void BeforeLog(){
        System.out.println("前置通知");
    }

    @Before("execution(* com.wuxin.service.UserServiceImpl.*(..))")
    public void AfterLog(){
        System.out.println("后置通知");
    }

}
  • 开启注解
<!--3.注解实现AOP-->
<bean id="annLog" class="com.wuxin.log.AnnLog"/>
<aop:aspectj-autoproxy proxy-target-class="true"/>
  • 测试类
import com.wuxin.service.UserService;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MyTest {
    public static void main(String[] args) {
        ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        UserService userServiceImpl = (UserService) context.getBean("userServiceImpl");
        userServiceImpl.add();
    }
}
posted @ 2020-10-05 22:23  无心吖  阅读(1955)  评论(2编辑  收藏  举报