首页
技术小册
AIGC
面试刷题
技术文章
MAGENTO
云计算
视频课程
源码下载
PDF书籍
「涨薪秘籍」
登录
注册
CGLIB AopProxy实现 - CglibAopProxy
AopProxyFactory配置管理器 - AdvisedSupport
Advisor链工厂接口与实现 - AdvisorChainFactory
目标对象来源接口与实现 - TargetSource
代理对象创建基础类 - ProxyCreatorSupport
AdvisedSupport事件监听器 - AdvisedSupportListener
ProxyCreatorSupport标准实现 - ProxyFactory
ProxyCreatorSupport IoC容器实现 - ProxyFactoryBean
ProxyCreatorSupport AspectJ实现 - AspectJProxyFactory
IoC容器自动代理抽象 - AbstractAutoProxyCreator
IoC容器自动代理标准实现
IoC容器自动代理 AspectJ 实现 - AspectJAwareAdvisorAutoProxyCreator
AOP Infrastructure Bean接口 - AopInfrastructureBean
AOP上下文辅助类 - AopContext
代理工厂工具类 - AopProxyUtils
AOP工具类 - AopUtils
AspectJ Enable模块驱动实现 - @EnableAspectJAutoProxy
AspectJ XML配置驱动实现 -
AOP配置Schema-based 实现 -
Aspect Schema-based实现 -
Pointcut Schema-based实现 -
Around Advice Schema-based实现 -
Before Advice Schema-based实现 -
After Advice Schema-based实现 -
After Returning Advice Schema-based实现 -
After Throwing Advice Schema-based实现 -
Adviser Schema-based实现 -
Introduction Schema-based实现 -
作用域代理Schema-based实现 -
抽象工厂模式(Abstract factory)实现
构建器模式(Builder)实现
工厂方法模式(Factory method)实现
原型模式(Prototype)实现
单例模式(Singleton)实现
适配器模式(Adapter)实现
组合模式(Composite)实现
装饰器模式(Decorator)实现
享元模式(Flyweight)实现
代理模式(Proxy)实现
模板方法模式(Template Method)实现
责任链模式(Chain of Responsibility)实现
观察者模式(Observer)实现
策略模式(Strategy)实现
命令模式(Command)实现
状态模式(State)实现
Spring AOP在 Spring 事件(Events)
Spring AOP在Spring 事务(Transactions)理论基础
Spring AOP在Spring 事务(Transactions)源码分析
Spring AOP在Spring 缓存(Caching)
Spring AOP在Spring本地调度(Scheduling)
当前位置:
首页>>
技术小册>>
Spring AOP 编程思想(下)
小册名称:Spring AOP 编程思想(下)
### 章节标题:After Advice Schema-based实现 - `<aop:after/>` #### 引言 在Spring AOP(面向切面编程)的广阔领域中,通知(Advice)是核心概念之一,它定义了切面的“何时”及“如何”执行其逻辑。`After advice`作为通知类型的一种,特别关注于在目标方法执行后(不论成功与否)执行特定逻辑。这种特性使得`After advice`成为处理资源清理、日志记录、审计等非功能性需求时不可或缺的工具。本章将深入探讨如何通过Spring AOP的XML Schema配置方式来实现`<aop:after/>`通知,展现其在实际开发中的强大功能与应用场景。 #### 理解`<aop:after/>`通知 在Spring AOP中,`<aop:after/>`元素定义了一种在目标方法执行完成后(包括正常返回和异常抛出后)执行的通知。它不会阻止目标方法的执行,也不会修改其返回值或异常信息,仅仅是在方法执行完毕后执行一段代码。这种特性使得`<aop:after/>`非常适合于那些不需要访问方法参数、返回值或异常信息的场景,如简单的日志记录、性能监控等。 #### 配置`<aop:after/>`通知的步骤 要实现`<aop:after/>`通知,你需要遵循以下几个步骤来配置你的Spring AOP环境: 1. **引入必要的依赖**:确保你的项目中包含了Spring AOP和AspectJ的依赖。在Maven项目中,你通常需要在`pom.xml`中添加相应的依赖项。 2. **定义切面**:创建一个切面类,该类中包含了作为`<aop:after/>`通知方法的逻辑。这个方法通常会有一个`JoinPoint`类型的参数(尽管在`<aop:after/>`中不常用),但主要是为了保持一致性或未来可能的扩展。 3. **编写通知方法**:在切面类中,编写一个无特定返回值(通常使用`void`)且不接受方法参数(或仅有一个`JoinPoint`参数但不使用)的方法,用于定义`<aop:after/>`通知的逻辑。 4. **配置XML Schema**:在你的Spring配置文件中,使用`<aop:config>`标签定义AOP配置,并使用`<aop:aspect>`标签指定切面类,然后在`<aop:aspect>`内部使用`<aop:after/>`标签指定哪些方法将作为`After advice`执行,以及这些方法将应用于哪些切入点表达式。 #### 示例 假设我们有一个简单的日志切面,它需要在所有服务层方法的执行后记录一条日志。以下是详细的实现步骤和代码示例。 ##### 1. 引入依赖 对于Maven项目,在`pom.xml`中添加以下依赖(注意版本号可能需要根据实际情况调整): ```xml <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aop</artifactId> <version>5.3.10</version> </dependency> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> <version>1.9.6</version> </dependency> ``` ##### 2. 定义切面 ```java package com.example.aop; import org.aspectj.lang.JoinPoint; import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.After; import org.springframework.stereotype.Component; @Aspect @Component public class LoggingAspect { // 注意:虽然这里使用了@After注解,但我们的重点是XML配置,因此方法内没有特定逻辑 // 只是为了说明如何定义通知方法 // 假设这是XML配置中将要引用的方法 public void logAfterMethodExecution(JoinPoint joinPoint) { System.out.println("After executing method: " + joinPoint.getSignature().getName()); } } ``` 注意:虽然这里使用了`@Aspect`和`@After`注解来标记类和方法,但我们的重点是通过XML配置`<aop:after/>`,因此这里的注解仅作示意。 ##### 3. 配置XML Schema 在你的Spring配置文件中(假设为`applicationContext.xml`),进行如下配置: ```xml <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"> <!-- 自动扫描组件 --> <context:component-scan base-package="com.example.aop" /> <!-- AOP配置 --> <aop:config> <!-- 指定切面 --> <aop:aspect id="loggingAspect" ref="loggingAspectBean"> <!-- 定义After advice --> <aop:after method="logAfterMethodExecution" pointcut="execution(* com.example.service.*.*(..))"/> </aop:aspect> </aop:config> <!-- 注意:由于使用了@Component,Spring会自动创建bean,但这里为了演示XML配置方式, 我们假设有一个显式定义的bean来引用上面的切面类,实际开发中可能不需要这一步 --> <bean id="loggingAspectBean" class="com.example.aop.LoggingAspect" /> </beans> ``` **注意**:在上面的配置中,`ref="loggingAspectBean"`指向了一个假设存在的显式定义的bean,但在实际项目中,如果你已经通过`@Component`注解让Spring管理了`LoggingAspect`类,那么这一步可能是多余的。这里主要是为了演示如何通过XML配置完全控制AOP行为,包括切面的引用。 #### 总结 通过`<aop:after/>`标签,Spring AOP提供了一种灵活且强大的方式来在方法执行后执行特定逻辑,而无需关心方法的执行结果或异常。这种非侵入式的编程方式极大地提高了代码的模块化和可维护性。在实际开发中,合理地使用`<aop:after/>`通知可以帮助我们有效地处理日志记录、性能监控等跨切面的任务,从而让我们更加专注于业务逻辑的实现。希望本章的内容能够为你理解和应用Spring AOP中的`<aop:after/>`通知提供有力的支持。
上一篇:
Before Advice Schema-based实现 - <aop:before/>
下一篇:
After Returning Advice Schema-based实现 - <aop:after-returning/>
该分类下的相关小册推荐:
Java并发编程实战
java源码学习笔记
Mybatis合辑5-注解、扩展、SQL构建
深入理解Java虚拟机
Java语言基础13-类的加载和反射
Java语言基础6-面向对象高级
Java语言基础2-运算符
Java高并发秒杀入门与实战
Java并发编程
SpringBoot合辑-高级篇
Java语言基础14-枚举和注解
Java语言基础15-单元测试和日志技术