Spring AOP 详细深入讲解+代码示例

Spring AOP(Aspect-Oriented Programming)是一种编程范式,它允许你定义横切关注点,如日志记录、事务管理、性能监控等,然后将这些关注点注入到应用程序的各个模块中,无需修改这些模块的源代码。

Spring AOP 基于代理模式实现,主要有两种方式:JDK动态代理和CGLIB代理。当目标对象实现了接口时,Spring会使用JDK动态代理;当目标对象没有实现接口时,Spring会使用CGLIB代理。

下面是一个简单的Spring AOP例子,使用AspectJ注解来声明切面和通知:

  1. 添加依赖(在pom.xml中):



<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-aop</artifactId>
</dependency>
  1. 创建一个切面(Aspect):



import org.aspectj.lang.annotation.Pointcut;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.Aspect;
import org.springframework.stereotype.Component;
 
@Aspect
@Component
public class LogAspect {
 
    @Pointcut("execution(* com.example.service.*.*(..))") // 定义切点
    public void serviceLog() {}
 
    @Before("serviceLog()") // 前置通知
    public void beforeMethod(JoinPoint joinPoint) {
        System.out.println("Before method: " + joinPoint.getSignature());
    }
 
    @After("serviceLog()") // 后置通知
    public void afterMethod(JoinPoint joinPoint) {
        System.out.println("After method: " + joinPoint.getSignature());
    }
}
  1. 创建一个服务(Service):



package com.example.service;
 
@Service
public class MyService {
    public void doSomething() {
        System.out.println("Doing something in MyService");
    }
}

在上述例子中,我们定义了一个切面LogAspect,它会在com.example.service包下所有方法执行前后打印日志。@Pointcut定义了切点,即哪些方法会被AOP代理,并应用切面逻辑。@Before@After分别表示前置通知和后置通知,在目标方法执行前后调用。

确保Spring Boot应用的主类上添加了@EnableAspectJAutoProxy注解,以启用Spring AOP支持。

这只是Spring AOP的简单介绍和代码示例,实际应用中可以使用不同的通知类型,如@Around(环绕通知)、@AfterReturning(后置返回通知)、@AfterThrowing(异常抛出通知)等,并且可以更复杂的切点表达式来精确指定哪些方法会被通知。

最后修改于:2024年09月04日 15:19

评论已关闭

推荐阅读

DDPG 模型解析,附Pytorch完整代码
2024年11月24日
DQN 模型解析,附Pytorch完整代码
2024年11月24日
AIGC实战——Transformer模型
2024年12月01日
Socket TCP 和 UDP 编程基础(Python)
2024年11月30日
python , tcp , udp
如何使用 ChatGPT 进行学术润色?你需要这些指令
2024年12月01日
AI
最新 Python 调用 OpenAi 详细教程实现问答、图像合成、图像理解、语音合成、语音识别(详细教程)
2024年11月24日
ChatGPT 和 DALL·E 2 配合生成故事绘本
2024年12月01日
omegaconf,一个超强的 Python 库!
2024年11月24日
【视觉AIGC识别】误差特征、人脸伪造检测、其他类型假图检测
2024年12月01日
[超级详细]如何在深度学习训练模型过程中使用 GPU 加速
2024年11月29日
Python 物理引擎pymunk最完整教程
2024年11月27日
MediaPipe 人体姿态与手指关键点检测教程
2024年11月27日
深入了解 Taipy:Python 打造 Web 应用的全面教程
2024年11月26日
基于Transformer的时间序列预测模型
2024年11月25日
Python在金融大数据分析中的AI应用(股价分析、量化交易)实战
2024年11月25日
AIGC Gradio系列学习教程之Components
2024年12月01日
Python3 `asyncio` — 异步 I/O,事件循环和并发工具
2024年11月30日
llama-factory SFT系列教程:大模型在自定义数据集 LoRA 训练与部署
2024年12月01日
Python 多线程和多进程用法
2024年11月24日
Python socket详解,全网最全教程
2024年11月27日