Spring原生AOP支持

简介: 在目标方法被调用前调用,切面需要实现的接口:org.springframework.aop.MethodBeforeAdvice

常见Spring内置AOP接口

Before通知

  • 在目标方法被调用前调用,
  • 切面需要实现的接口:org.springframework.aop.MethodBeforeAdvice

After通知

  • 在目标方法被调用后调用
  • 切面需要实现的接口:org.springframework.aop.AfterReturningAdvice

Throws通知

  • 在目标方法抛出异常时调用
  • 切面需要实现的接口:org.springframework.aop.ThrowsAdvice

Around通知

  • 环绕通知:拦截对目标对象方法的调用,在被调用方法前后执行切面功能,例如:事务切面就是环绕通知
  • 切面需要实现的接口:org.aopalliance.intercept.MethodInterceptor

原生Before通知示例

  • 其他通知类型同理,不再重复演示

业务接口

package com.example.service;
/**
 * 定义业务接口
 */
public interface Service {
    //购买功能
    default void buy(){}
    //预定功能
    default String order(int orderNums){return null;}
}

业务实现类

package com.example.service.impl;
import com.example.service.Service;
/**
 * 图书业务实现类
 */
public class BookServiceImpl implements Service {
    @Override
    public void buy() {
        System.out.println("图书购买业务....");
    }
    @Override
    public String order(int orderNums) {
        System.out.println("预定图书: " + orderNums + " 册");
        return "预定成功";
    }
}

切面实现类

  • 相当于使用了Spring内置的AOP前置通知接口:org.springframework.aop.MethodBeforeAdvice
package com.example.advice;
import org.springframework.aop.MethodBeforeAdvice;
import java.lang.reflect.Method;
import java.text.SimpleDateFormat;
import java.util.Arrays;
import java.util.Date;
public class LogAdvice implements MethodBeforeAdvice {
    @Override
    public void before(Method method, Object[] args, Object target) throws Throwable {
        //3个参数:目标方法,目标方法返回值,目标对象
        SimpleDateFormat sf = new SimpleDateFormat("yyyy-MM-dd");
        System.out.println("[业务功能名称] :" + method.getName());
        System.out.println("[业务参数信息] :" + Arrays.toString(args));
        System.out.println("[业务办理时间] :" + sf.format(new Date()));
        System.out.println("--------- 具体业务如下 ---------");
    }
}

业务功能和切面功能整合

  • 使用applicationContext.xml,看起来更加直观
<!--创建业务对象-->
    <bean id="bookServiceTarget" class="com.example.service.impl.BookServiceImpl"/>
    <!--创建切面的对象-->
    <bean id="logAdvice" class="com.example.advice.LogAdvice"/>
    <!-- 相当于创建动态代理对象,用来在底层绑定业务和切面-->
    <bean id="bookService" class="org.springframework.aop.framework.ProxyFactoryBean">
        <!--配置业务接口,底层的jdk动态代理需要用-->
        <property name="interfaces" value="com.example.service.Service"/>
        <!--配置切面,可以有多个-->
        <property name="interceptorNames">
            <list>
                <value>logAdvice</value>
            </list>
        </property>
        <!--待织入切面的业务功能对象,底层的jdk动态代理需要用-->
        <property name="target" ref="bookServiceTarget"/>
    </bean>

对比手写的AOP版本5

将上述applicationContext.xml的内容和AOP版本5中的ProxyFactory对比,上述xml作用就相当于我们手写的ProxyFactory作用:
获取到业务功能对象和切面功能对象,并将他们传给底层来获取动态代理对象,在底层完成切面功能的织入
不管是xml或者通过注解来整合业务和切面,Spring底层都是像手写的AOP版本5一样,通过jdk动态代理来实现的,只不过现在封装起来了

  • AOP版本5中的ProxyFactory代理工厂
package com.example.proxy05;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
/**
 * 代理工厂,获取动态代理对象
 */
public class ProxyFactory {
    //获取jdk动态代理对象
    //Service target 接口类型的业务功能对象
    //Aop aop 接口功能的切面功能对象
    public static Object getProxy(Service target, Aop aop){
        //使用内置类,返回jdk动态代理对象
        return Proxy.newProxyInstance(
                target.getClass().getClassLoader(),
                //获取实现的所有接口
                target.getClass().getInterfaces(),
                //调用目标对象的目标方法
                new InvocationHandler() {
                    @Override
                    public Object invoke(
                            Object obj,
                            Method method,
                            Object[] args) throws Throwable {
                        //存放目标对象的目标方法的返回值
                        Object res = null;
                        try{
                            //切面功能
                            aop.before();
                            //业务功能,根据外部调用的功能,动态代理目标对象被调用的方法
                            res = method.invoke(target, args);
                            //切面功能
                            aop.after();
                        }catch (Exception e){
                            //切面功能
                            aop.exception();
                        }
                        return res;
                    }
                }
        );
    }
}

测试

package test;
import com.example.service.Service;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class TestSpringAOP {
    @Test
    public void testSpringAop(){
        //创建Spring容器
        ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");
        //获取动态代理对象
        Service agent = (Service) ac.getBean("bookService");
        //调用业务功能
        String res = agent.order(10);
        System.out.println("结果: " + res);
    }
}

测试输出

  • Spring原生AOP前置通知在业务功能前顺利执行。底层的jdk动态代理也正确的反射调用了外部调用的目标方法,正确接收了参数并给出了返回值
[业务功能名称] :order
[业务参数信息] :[10]
[业务办理时间] :2022-08-23
--------- 具体业务如下 ---------
预定图书: 10 册
结果: 预定成功
Process finished with exit code 0

注意

  • 在开发中一般不常用Spring原生的AOP支持,在需要时,常使用其他专门的AOP框架
  • 手写AOP框架和简单演示Spring内置AOP通知接口是为了更好的理解AOP面向接口编程的思想
相关文章
|
6天前
|
存储 安全 Java
Spring Boot 3 集成Spring AOP实现系统日志记录
本文介绍了如何在Spring Boot 3中集成Spring AOP实现系统日志记录功能。通过定义`SysLog`注解和配置相应的AOP切面,可以在方法执行前后自动记录日志信息,包括操作的开始时间、结束时间、请求参数、返回结果、异常信息等,并将这些信息保存到数据库中。此外,还使用了`ThreadLocal`变量来存储每个线程独立的日志数据,确保线程安全。文中还展示了项目实战中的部分代码片段,以及基于Spring Boot 3 + Vue 3构建的快速开发框架的简介与内置功能列表。此框架结合了当前主流技术栈,提供了用户管理、权限控制、接口文档自动生成等多项实用特性。
36 8
|
2月前
|
XML Java 数据安全/隐私保护
Spring Aop该如何使用
本文介绍了AOP(面向切面编程)的基本概念和术语,并通过具体业务场景演示了如何在Spring框架中使用Spring AOP。文章详细解释了切面、连接点、通知、切点等关键术语,并提供了完整的示例代码,帮助读者轻松理解和应用Spring AOP。
Spring Aop该如何使用
|
2月前
|
监控 安全 Java
什么是AOP?如何与Spring Boot一起使用?
什么是AOP?如何与Spring Boot一起使用?
85 5
|
2月前
|
Java 开发者 Spring
深入解析:Spring AOP的底层实现机制
在现代软件开发中,Spring框架的AOP(面向切面编程)功能因其能够有效分离横切关注点(如日志记录、事务管理等)而备受青睐。本文将深入探讨Spring AOP的底层原理,揭示其如何通过动态代理技术实现方法的增强。
85 8
|
2月前
|
Java 开发者 Spring
Spring AOP 底层原理技术分享
Spring AOP(面向切面编程)是Spring框架中一个强大的功能,它允许开发者在不修改业务逻辑代码的情况下,增加额外的功能,如日志记录、事务管理等。本文将深入探讨Spring AOP的底层原理,包括其核心概念、实现方式以及如何与Spring框架协同工作。
|
2月前
|
XML 监控 安全
深入调查研究Spring AOP
【11月更文挑战第15天】
52 5
|
2月前
|
Java 开发者 Spring
Spring AOP深度解析:探秘动态代理与增强逻辑
Spring框架中的AOP(Aspect-Oriented Programming,面向切面编程)功能为开发者提供了一种强大的工具,用以将横切关注点(如日志、事务管理等)与业务逻辑分离。本文将深入探讨Spring AOP的底层原理,包括动态代理机制和增强逻辑的实现。
53 4
|
3月前
|
存储 缓存 Java
Spring高手之路23——AOP触发机制与代理逻辑的执行
本篇文章深入解析了Spring AOP代理的触发机制和执行流程,从源码角度详细讲解了Bean如何被AOP代理,包括代理对象的创建、配置与执行逻辑,帮助读者全面掌握Spring AOP的核心技术。
59 3
Spring高手之路23——AOP触发机制与代理逻辑的执行
|
2月前
|
Java Spring
[Spring]aop的配置与使用
本文介绍了AOP(面向切面编程)的基本概念和核心思想。AOP是Spring框架的核心功能之一,通过动态代理在不修改原代码的情况下注入新功能。文章详细解释了连接点、切入点、通知、切面等关键概念,并列举了前置通知、后置通知、最终通知、异常通知和环绕通知五种通知类型。
50 1
|
4月前
|
设计模式 Java 测试技术
spring复习04,静态代理动态代理,AOP
这篇文章讲解了Java代理模式的相关知识,包括静态代理和动态代理(JDK动态代理和CGLIB),以及AOP(面向切面编程)的概念和在Spring框架中的应用。文章还提供了详细的示例代码,演示了如何使用Spring AOP进行方法增强和代理对象的创建。
spring复习04,静态代理动态代理,AOP