Spring基于AspectJ实现AOP操作

简介: Spring基于AspectJ实现AOP操作

Spring 框架一般都是基于 AspectJ 实现 AOP 操作。

需要注意的是:AspectJ 不是 Spring 组成部分,独立 AOP 框架,一般把 AspectJ 和 Spirng 框架一起使用,进行 AOP 操作。


基于 AspectJ 实现 AOP 操作有两种方式:

(1)基于 xml 配置文件实现

(2)基于注解方式实现(普遍使用)


准备工作


在项目工程里面引入 AOP 相关依赖。


需要以下这些依赖:

1.png


如果是maven项目,使用pom.xml代替引入jar包的过程(注意)


pom.xml:


<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.Keafmd</groupId>
    <artifactId>day04_eesy_01jdbctemplate</artifactId>
    <version>1.0-SNAPSHOT</version>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>7</source>
                    <target>7</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <packaging>jar</packaging>
    <dependencies>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>5.2.6.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-jdbc</artifactId>
            <version>5.2.7.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-tx</artifactId>
            <version>5.2.7.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>5.1.46</version>
        </dependency>
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>druid</artifactId>
            <version>1.1.10</version>
        </dependency>
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjweaver</artifactId>
            <version>1.8.9</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>compile</scope>
        </dependency>
    </dependencies>
</project>

学会使用切入点表达式


切入点表达式作用(通俗的讲):知道对哪个类里面的哪个方法进行增强。

语法结构: execution([权限修饰符] [返回类型] [类全路径] [方法名称] ([参数列表]) )


例 1:对 com.atguigu.dao.BookDao 类里面的 add 进行增强

execution( * com.atguigu.dao.BookDao.add(…))


例 2:对 com.atguigu.dao.BookDao 类里面的所有的方法进行增强

execution( * com.atguigu.dao.BookDao. * (…))


例 3:对 com.atguigu.dao 包里面所有类,类里面所有方法进行增强

execution( * com.atguigu.dao. * . * (…))


AOP 操作(AspectJ 注解)


1、创建类,在类里面定义方法


User类:


package com.Keafmd.spring5.aopanno;
import org.springframework.stereotype.Component;
/**
 * Keafmd
 *
 * @ClassName: User
 * @Description: 基于注解  被增强的类
 * @author: 牛哄哄的柯南
 * @date: 2021-01-18 13:54
 */
@Component
public class User {
    public void add(){
//        int i = 10/0;
        System.out.println("add....");
    }
}


2、创建增强类(编写增强逻辑),在增强类里面,创建方法,让不同方法代表不同通知类型


UserProxy 类:


package com.Keafmd.spring5.aopanno;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.*;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;
/**
 * Keafmd
 *
 * @ClassName: UserPtoxy
 * @Description: 增强类
 * @author: 牛哄哄的柯南
 * @date: 2021-01-18 13:56
 */
@Component
@Aspect //生成代理对象
@Order(3)
public class UserProxy {
    //相同的切入点抽取
    @Pointcut(value = "execution(* com.Keafmd.spring5.aopanno.User.add(..))")
    public void pointdemo(){
    }
    //前置通知
    //@Before注解就表示前置通知
    @Before(value = "pointdemo()")
    public void beafor(){
        System.out.println("before...");
    }
    //最终通知
    @After(value = "execution(* com.Keafmd.spring5.aopanno.User.add(..))")
    public void after(){
        System.out.println("after...");
    }
    //后置通知(返回通知)
    @AfterReturning(value = "execution(* com.Keafmd.spring5.aopanno.User.add(..))")
    public void afterReturning(){
        System.out.println("afterReturning...");
    }
    //异常执行
    @AfterThrowing(value = "execution(* com.Keafmd.spring5.aopanno.User.add(..))")
    public void afterThrowing(){
        System.out.println("afterThrowing...");
    }
    //环绕通知
    @Around(value = "execution(* com.Keafmd.spring5.aopanno.User.add(..))")
    public void around(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
        System.out.println("around-before...");
        //被增强的方法执行
        proceedingJoinPoint.proceed();
        System.out.println("around-after...");
    }
}


3、进行通知的配置


(1)在 spring 配置文件中,开启注解扫描

(2)使用注解创建 User 和 UserProxy 对象

(3)在增强类上面添加注解 @Aspect

(4)在 spring 配置文件中开启生成代理对象


bean2.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:context="http://www.springframework.org/schema/context"
       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/context http://www.springframework.org/schema/context/spring-context.xsd
    http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
    <!--开启注解扫描-->
    <context:component-scan base-package="com.Keafmd.spring5.aopanno"></context:component-scan>
    <!--开启AspectJ生成代理对象-->
    <aop:aspectj-autoproxy></aop:aspectj-autoproxy>
</beans>

4、配置不同类型的通知


在增强类的里面,在作为通知方法上面添加通知类型注解,使用切入点表达式配置。


UserProxy 类:


package com.Keafmd.spring5.aopanno;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.*;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;
/**
 * Keafmd
 *
 * @ClassName: UserPtoxy
 * @Description: 增强类
 * @author: 牛哄哄的柯南
 * @date: 2021-01-18 13:56
 */
@Component
@Aspect //生成代理对象
@Order(3)
public class UserProxy {
    //相同的切入点抽取
    @Pointcut(value = "execution(* com.Keafmd.spring5.aopanno.User.add(..))")
    public void pointdemo(){
    }
    //前置通知
    //@Before注解就表示前置通知
    @Before(value = "pointdemo()")
    public void beafor(){
        System.out.println("before...");
    }
    //最终通知
    @After(value = "execution(* com.Keafmd.spring5.aopanno.User.add(..))")
    public void after(){
        System.out.println("after...");
    }
    //后置通知(返回通知)
    @AfterReturning(value = "execution(* com.Keafmd.spring5.aopanno.User.add(..))")
    public void afterReturning(){
        System.out.println("afterReturning...");
    }
    //异常执行
    @AfterThrowing(value = "execution(* com.Keafmd.spring5.aopanno.User.add(..))")
    public void afterThrowing(){
        System.out.println("afterThrowing...");
    }
    //环绕通知
    @Around(value = "execution(* com.Keafmd.spring5.aopanno.User.add(..))")
    public void around(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
        System.out.println("around-before...");
        //被增强的方法执行
        proceedingJoinPoint.proceed();
        System.out.println("around-after...");
    }
}


相同的切入点抽取


写个方法然后调用这样就可以把相同接入点抽取出来了。


//相同的切入点抽取
    @Pointcut(value = "execution(* com.Keafmd.spring5.aopanno.User.add(..))")
    public void pointdemo(){
    }
    //前置通知
    //@Before注解就表示前置通知
    @Before(value = "pointdemo()")
    public void beafor(){
        System.out.println("before...");
    }


有多个增强类多同一个方法进行增强,设置增强类优先级


在增强类上面添加注解 @Order(数字类型值),数字类型值越小优先级越高。


@Component
@Aspect //生成代理对象
@Order(3)
public class UserProxy {

PersonProxy类:


package com.Keafmd.spring5.aopanno;
import org.aspectj.lang.annotation.AfterReturning;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;
/**
 * Keafmd
 *
 * @ClassName: PersonProxy
 * @Description:  第二个增强类
 * @author: 牛哄哄的柯南
 * @date: 2021-01-18 14:39
 */
@Component
@Aspect
@Order(1) //越小优先级越高
public class PersonProxy {
    //前置通知
    //@Before注解就表示前置通知
    @Before(value = "execution(* com.Keafmd.spring5.aopanno.User.add(..))")
    public void beafor(){
        System.out.println("Person before...");
    }
}

通过@Order设置后PersonProxy 的前置通知就会比UserProxy 的前置通知先执行。


完全使用注解开发


创建配置类,这样就不需要使用 xml 配置文件了。


ConfigAop类:


package com.Keafmd.spring5.config;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
/**
 * Keafmd
 *
 * @ClassName: ConfigAop
 * @Description: 配置类,完全注解,替代bean2.xml
 * @author: 牛哄哄的柯南
 * @date: 2021-01-18 15:12
 */
@Configuration
@ComponentScan(basePackages = {"com.Keafmd"})  //开启注解扫描
@EnableAspectJAutoProxy(proxyTargetClass = true)  //开启AspectJ生成代理对象
public class ConfigAop {
}

代码结构

1.png


测试代码


测试代码TestAop:


package com.Keafmd.spring5.test;
import com.Keafmd.spring5.aopanno.User;
import com.Keafmd.spring5.config.ConfigAop;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/**
 * Keafmd
 *
 * @ClassName: TestAop
 * @Description:
 * @author: 牛哄哄的柯南
 * @date: 2021-01-18 14:15
 */
public class TestAop {
    @Test
    public void testAOPnno(){
        ApplicationContext context = new ClassPathXmlApplicationContext("bean2.xml");
        User user = context.getBean("user",User.class);
        user.add();
    }
    //完全注解
    @Test
    public void testAOPnno2(){
        ApplicationContext context = new AnnotationConfigApplicationContext(ConfigAop.class);
        User user = context.getBean("user",User.class);
        user.add();
    }
}

输出结果:


Person before...
around-before...
before...
add....
around-after...
after...
afterReturning...
Process finished with exit code 0

testAOPnno和testAOPnno2的结果是相同的testAOPnno2采用是的完全注解开发,代替了xml配置文件。通过运行结果我们可以很轻清楚地看到不同类型通知的执行顺序,以及增强类的优先级。


以上就是基于AspectJ实现AOP操作的全部内容。


相关文章
|
29天前
|
XML Java 数据安全/隐私保护
Spring Aop该如何使用
本文介绍了AOP(面向切面编程)的基本概念和术语,并通过具体业务场景演示了如何在Spring框架中使用Spring AOP。文章详细解释了切面、连接点、通知、切点等关键术语,并提供了完整的示例代码,帮助读者轻松理解和应用Spring AOP。
Spring Aop该如何使用
|
2月前
|
存储 缓存 Java
Spring高手之路23——AOP触发机制与代理逻辑的执行
本篇文章深入解析了Spring AOP代理的触发机制和执行流程,从源码角度详细讲解了Bean如何被AOP代理,包括代理对象的创建、配置与执行逻辑,帮助读者全面掌握Spring AOP的核心技术。
43 3
Spring高手之路23——AOP触发机制与代理逻辑的执行
|
1月前
|
Java Spring
[Spring]aop的配置与使用
本文介绍了AOP(面向切面编程)的基本概念和核心思想。AOP是Spring框架的核心功能之一,通过动态代理在不修改原代码的情况下注入新功能。文章详细解释了连接点、切入点、通知、切面等关键概念,并列举了前置通知、后置通知、最终通知、异常通知和环绕通知五种通知类型。
30 1
|
1月前
|
安全 Java 测试技术
Java开发必读,谈谈对Spring IOC与AOP的理解
Spring的IOC和AOP机制通过依赖注入和横切关注点的分离,大大提高了代码的模块化和可维护性。IOC使得对象的创建和管理变得灵活可控,降低了对象之间的耦合度;AOP则通过动态代理机制实现了横切关注点的集中管理,减少了重复代码。理解和掌握这两个核心概念,是高效使用Spring框架的关键。希望本文对你深入理解Spring的IOC和AOP有所帮助。
35 0
|
3月前
|
设计模式 Java 测试技术
spring复习04,静态代理动态代理,AOP
这篇文章讲解了Java代理模式的相关知识,包括静态代理和动态代理(JDK动态代理和CGLIB),以及AOP(面向切面编程)的概念和在Spring框架中的应用。文章还提供了详细的示例代码,演示了如何使用Spring AOP进行方法增强和代理对象的创建。
spring复习04,静态代理动态代理,AOP
|
2月前
|
Java 编译器 Spring
Spring AOP 和 AspectJ 的区别
Spring AOP和AspectJ AOP都是面向切面编程(AOP)的实现,但它们在实现方式、灵活性、依赖性、性能和使用场景等方面存在显著区别。‌
96 2
|
2月前
|
Java Spring 容器
Spring IOC、AOP与事务管理底层原理及源码解析
【10月更文挑战第1天】Spring框架以其强大的控制反转(IOC)和面向切面编程(AOP)功能,成为Java企业级开发中的首选框架。本文将深入探讨Spring IOC和AOP的底层原理,并通过源码解析来揭示其实现机制。同时,我们还将探讨Spring事务管理的核心原理,并给出相应的源码示例。
137 9
|
2月前
|
XML Java 数据格式
Spring的IOC和AOP
Spring的IOC和AOP
51 0
|
3月前
|
Java 数据库连接 数据库
Spring基础3——AOP,事务管理
AOP简介、入门案例、工作流程、切入点表达式、环绕通知、通知获取参数或返回值或异常、事务管理
Spring基础3——AOP,事务管理
|
2月前
|
人工智能 自然语言处理 前端开发
SpringBoot + 通义千问 + 自定义React组件:支持EventStream数据解析的技术实践
【10月更文挑战第7天】在现代Web开发中,集成多种技术栈以实现复杂的功能需求已成为常态。本文将详细介绍如何使用SpringBoot作为后端框架,结合阿里巴巴的通义千问(一个强大的自然语言处理服务),并通过自定义React组件来支持服务器发送事件(SSE, Server-Sent Events)的EventStream数据解析。这一组合不仅能够实现高效的实时通信,还能利用AI技术提升用户体验。
196 2