首页
技术小册
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 编程思想(下)
### AOP配置Schema-based 实现 - `<aop:config/>` 在Spring框架中,面向切面编程(AOP, Aspect-Oriented Programming)是一种强大的编程范式,它允许开发者将横切关注点(如日志、事务管理等)从业务逻辑中分离出来,从而提高代码的可维护性和复用性。Spring AOP通过两种主要方式实现AOP功能:基于注解的配置和基于XML Schema的配置。本章节将深入探讨基于XML Schema的配置方式,特别是通过`<aop:config/>`元素来实现AOP的各个方面。 #### 一、`<aop:config/>`基础 `<aop:config/>`是Spring AOP中用于定义切面、切入点、通知等AOP组件的根元素。它封装了AOP配置的所有细节,使得AOP的配置变得结构化和易于管理。在一个Spring的XML配置文件中,`<aop:config/>`元素通常位于`<beans/>`元素内部,用于定义AOP的各个方面。 ##### 示例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"> <!-- AOP配置开始 --> <aop:config> <!-- 这里定义切面、切入点、通知等 --> </aop:config> <!-- 其他bean定义 --> </beans> ``` #### 二、定义切面(`<aop:aspect>`) 在`<aop:config/>`元素内部,`<aop:aspect>`用于定义一个切面。切面是AOP中的一个核心概念,它包含了多个增强(advice)以及一个切入点表达式,用于指定这些增强将应用于哪些连接点。 ##### 示例: ```xml <aop:aspect id="loggingAspect" ref="loggingService"> <!-- 切面内部定义 --> </aop:aspect> ``` 在上述示例中,`id`属性为切面提供了一个唯一的标识符,`ref`属性指向了一个Spring容器中的bean,该bean包含了切面的具体实现。 #### 三、定义切入点(`<aop:pointcut>`) 切入点定义了哪些连接点(JoinPoint)将被增强(Advice)织入。在`<aop:aspect>`内部,可以使用`<aop:pointcut>`元素来定义一个或多个切入点表达式。 ##### 示例: ```xml <aop:pointcut id="serviceMethodExecution" expression="execution(* com.example.service.*.*(..))"/> ``` 这个切入点表达式匹配`com.example.service`包下所有类的所有方法。`execution`是Spring AOP支持的一种切入点指示器,用于指定方法签名模式。 #### 四、定义通知(Advice) 通知是AOP中增强(增强代码)的另一种说法,它定义了切面在特定连接点上的行为。Spring AOP支持五种类型的通知:前置通知(Before)、后置通知(After Returning)、异常通知(After Throwing)、最终通知(After)和环绕通知(Around)。 ##### 示例: ```xml <!-- 前置通知 --> <aop:before method="beforeServiceMethod" pointcut-ref="serviceMethodExecution"/> <!-- 后置通知(成功执行) --> <aop:after-returning method="afterReturning" pointcut-ref="serviceMethodExecution" returning="result"/> <!-- 异常通知 --> <aop:after-throwing method="afterThrowing" pointcut-ref="serviceMethodExecution" throwing="ex"/> <!-- 最终通知 --> <aop:after method="afterMethod" pointcut-ref="serviceMethodExecution"/> <!-- 环绕通知 --> <aop:around method="aroundAdvice" pointcut-ref="serviceMethodExecution"/> ``` 在以上示例中,`method`属性指定了包含通知逻辑的方法名,该方法必须位于`<aop:aspect>`的`ref`属性所引用的bean中。`pointcut-ref`属性引用了之前定义的切入点表达式。对于`after-returning`和`after-throwing`通知,`returning`和`throwing`属性分别用于访问方法的返回值和抛出的异常。 #### 五、环绕通知的深入 环绕通知是功能最强大的通知类型,因为它能够在方法执行前后自定义行为,甚至决定是否继续执行目标方法。环绕通知需要实现一个接口,并在该接口的实现中编写逻辑。 ##### 示例代码(Java): ```java public class LoggingAspect { public Object aroundAdvice(ProceedingJoinPoint pjp) throws Throwable { // 前置逻辑 System.out.println("Before method: " + pjp.getSignature().getName()); try { // 继续执行目标方法 Object output = pjp.proceed(); // 后置逻辑(成功) System.out.println("After method: " + pjp.getSignature().getName()); return output; } catch (IllegalArgumentException e) { // 异常逻辑 System.out.println("Exception in method: " + pjp.getSignature().getName()); throw e; } } } ``` 在XML配置中,环绕通知的配置与其他通知类似,只是`method`属性指向的是环绕通知的实现方法。 #### 六、组合切面 在复杂的应用中,可能会需要多个切面来处理不同的横切关注点。Spring AOP允许在`<aop:config/>`中定义多个`<aop:aspect>`元素,以组合多个切面。切面之间的优先级可以通过切面的定义顺序或特定的配置属性来控制。 #### 七、注意事项和最佳实践 - **性能考虑**:虽然AOP提供了强大的功能,但它也可能引入性能开销。因此,在设计AOP解决方案时,应评估其对系统性能的影响。 - **切面的顺序**:在多个切面作用于同一连接点时,它们的执行顺序是重要的。Spring AOP允许通过配置来控制切面的顺序。 - **依赖注入**:切面本身也可以是Spring管理的bean,因此可以利用Spring的依赖注入功能来注入其他bean或配置。 - **测试**:AOP增加了系统的复杂度,因此应编写充分的单元测试来验证切面的行为。 #### 八、总结 `<aop:config/>`是Spring AOP中基于XML Schema配置的核心元素,它提供了定义切面、切入点、通知等AOP组件的能力。通过合理配置`<aop:config/>`及其子元素,开发者可以将横切关注点从业务逻辑中分离出来,实现更加模块化和可维护的代码。在实际开发中,应根据项目的具体需求选择合适的AOP配置方式,并遵循最佳实践来确保代码的质量和性能。
上一篇:
AspectJ XML配置驱动实现 - <aop:aspectj-autoproxy/>
下一篇:
Aspect Schema-based实现 - <aop:aspect/>
该分类下的相关小册推荐:
Java语言基础2-运算符
SpringBoot合辑-高级篇
Java语言基础4-数组详解
Java语言基础10-Java中的集合
Java面试指南
Mybatis合辑3-Mybatis动态SQL
JAVA 函数式编程入门与实践
Java必知必会-Maven初级
深入拆解 Java 虚拟机
Java语言基础7-Java中的异常
Java语言基础12-网络编程
Java语言基础13-类的加载和反射