Spring AOP(面向切面编程)

什么是 AOP

AOP:全称是 Aspect Oriented Programming 即:面向切面编程。它是通过预编译方式和运行期间动态代理实现程序功能的统一维护的一种技术。AOP是OOP的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范型。

AOP 的作用及优势

作用
AOP可在程序运行期间,不修改源码对已有方法进行增强。
优势
利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。

Spring中的 AOP

AOP 相关术语

Joinpoint(连接点):
所谓连接点是指那些被拦截到的点。在 spring 中,这些点指的是方法,因为 spring 只支持方法类型的连接点。

Pointcut(切入点):
所谓切入点是指我们要对哪些 Joinpoint 进行拦截的定义。

Advice(通知/增强):
所谓通知是指拦截到 Joinpoint 之后所要做的事情就是通知。
通知的类型:前置通知,后置通知,异常通知,最终通知,环绕通知。

Introduction(引介):
引介是一种特殊的通知在不修改类代码的前提下, Introduction 可以在运行期为类动态地添加一些方法或 Field。

Target(目标对象):
代理的目标对象。

Weaving(织入):
是指把增强应用到目标对象来创建新的代理对象的过程。
spring 采用动态代理织入,而 AspectJ 采用编译期织入和类装载期织入。

Proxy(代理):
一个类被 AOP 织入增强后,就产生一个结果代理类。

Aspect(切面):
是切入点和通知(引介)的结合。

基于 XML 的 AOP 配置

环境搭建

下面我们编写一个账户service接口和实现类,模拟账户的保存和删除。
IAccountService.java

package service;

/**
 * 账户的业务层接口
 */
public interface IAccountService {

    /**
     * 模拟保存账户
     */
   void saveAccount();

    /**
     * 模拟删除账户
     * @param i
     * @return
     */
   int  deleteAccount(int i);
}

AccountServiceImpl.java

package service.impl;

import service.IAccountService;

/**
 * 账户的业务层实现类
 */
public class AccountServiceImpl implements IAccountService {

    @Override
    public void saveAccount() {
        System.out.println("保存账户");
    }

    @Override
    public int deleteAccount(int i) {
        System.out.println("删除了id为"+i+"的账户");
        return 0;
    }
}

编写一个日志类,用于在对账户进行操作时模拟记录日志
Logger.java

package utils;

/**
 * 用于记录日志的工具类,它里面提供了公共的代码
 */
public class Logger {
    /**
     * 用于打印日志:计划让其在切入点方法执行之前执行(切入点方法就是业务层方法)
     */
    public void beforePrintLog(){
        System.out.println("前置日志通知!!");
    }
    public void afterReturningPrintLog(){
        System.out.println("后置日志通知!!");
    }

    public void finalPrintLog(){
        System.out.println("最终日志通知!!");
    }
    public void afterThrowingPrintLog(){
        System.out.println("异常日志通知!!");
    }
}

导入jar包坐标

<packaging>jarpackaging>
<dependencies>
    <dependency>
        <groupId>org.springframeworkgroupId>
        <artifactId>spring-contextartifactId>
        <version>5.0.2.RELEASEversion>
    dependency>

    <dependency>
        <groupId>org.aspectjgroupId>
        <artifactId>aspectjweaverartifactId>
        <version>1.8.7version>
    dependency>
dependencies>

spring中基于XML的AOP配置步骤

创建 spring 的配置文件并导入约束

 
<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
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop.xsd">
beans>

配置 spring 的 ioc


    <bean id="accountService" class="service.impl.AccountServiceImpl">bean>

把通知类用 bean 标签配置起来


	<bean id="logger" class="utils.Logger">bean>

使用 aop:config 声明 aop 配置
使用 aop:aspect 配置切面

aop:aspect 属性:
id属性:是给切面提供一个唯一标识
ref属性:是指定通知类bean的Id。

aop:before属性:
before:表示配置前置通知
method属性:用于指定通知类中的增强方法名称
pointcut属性:用于指定切入点表达式,该表达式的含义指的是对业务层中哪些方法增强
ponitcut-ref:用于指定切入点的表达式的引用


    <aop:config>
        
        <aop:pointcut id="ptr" expression="execution(* service.impl.*.*(..))">aop:pointcut>
        
        <aop:aspect id="logAdvice" ref="logger">
            
            <aop:before method="beforePrintLog" pointcut-ref="ptr" >aop:before>

            
            <aop:after-returning method="afterReturningPrintLog" pointcut-ref="ptr">aop:after-returning>

            
            <aop:after-throwing method="afterThrowingPrintLog" pointcut-ref="ptr">aop:after-throwing>

            
            <aop:after method="finalPrintLog" pointcut-ref="ptr">aop:after>

            
            
        aop:aspect>
    aop:config>

编写测试类

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import service.IAccountService;

/**
 * 测试AOP的配置
 */
public class AOPTest {

    public static void main(String[] args) {
        //1.获取容器
        ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml");
        //2.获取对象
        IAccountService as = (IAccountService)ac.getBean("accountService");
        //3.执行方法
        as.saveAccount();
        as.deleteAccount(5);
    }
}

执行结果如下:

前置日志通知!!
保存账户
后置日志通知!!
最终日志通知!!
前置日志通知!!
删除了id为5的账户
后置日志通知!!
最终日志通知!!

今天的分享就到这里了,希望大家能够有所收获,欢迎关注。

你可能感兴趣的:(spring,spring,aop,java)