首页
技术小册
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 编程思想(下)
### 章节标题:Aspect Schema-based实现 - `<aop:aspect/>` 在Spring框架中,面向切面编程(AOP, Aspect-Oriented Programming)是一种强大的编程范式,它允许开发者将横切关注点(如日志记录、事务管理、安全控制等)从业务逻辑中分离出来,从而提高代码的可维护性和复用性。Spring AOP提供了多种实现方式,其中基于XML Schema的配置方式(即使用`<aop:aspect/>`标签)是一种直观且易于理解的方法,尤其适合那些偏好于XML配置或需要高度定制化配置的场景。 #### 一、引言 在深入探讨`<aop:aspect/>`标签之前,有必要先理解AOP的基本概念,包括切面(Aspect)、连接点(Joinpoint)、切入点(Pointcut)、通知(Advice)和目标对象(Target Object)等。切面是横切关注点的模块化,它定义了何时、何地以及如何应用这些关注点。连接点是程序执行过程中能够插入切面的点,如方法调用或异常抛出。切入点则是对连接点进行过滤的结果,它指定了哪些连接点将被增强。通知是切面在特定连接点上执行的动作,如前置通知(Before Advice)、后置通知(After Returning Advice)、异常通知(After Throwing Advice)和最终通知(After Advice,无论方法执行结果如何都会执行)。目标对象则是被增强的对象。 #### 二、`<aop:aspect/>`基础 `<aop:aspect/>`标签是Spring AOP XML配置中的核心元素之一,它用于声明一个切面。通过该标签,我们可以将切面的定义(包括切入点表达式和通知)与Spring的IoC容器集成,从而实现切面的自动注册和织入。 ##### 2.1 引入AOP命名空间 在使用`<aop:aspect/>`之前,需要在Spring的XML配置文件中引入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配置内容 --> </beans> ``` ##### 2.2 定义切面 使用`<aop:aspect/>`标签定义一个切面时,需要指定切面的实现类(即包含通知方法的类)。例如: ```xml <aop:config> <aop:aspect id="loggingAspect" ref="loggingAspectBean"> <!-- 切入点与通知配置 --> </aop:aspect> </aop:config> <bean id="loggingAspectBean" class="com.example.LoggingAspect"/> ``` 在上面的例子中,`loggingAspectBean`是切面的实现类,它被Spring容器管理,并通过`ref`属性引用到`<aop:aspect/>`标签中。`id`属性为切面在Spring容器中的唯一标识符。 #### 三、配置切入点与通知 在`<aop:aspect/>`标签内部,可以配置多个切入点(通过`<aop:pointcut/>`标签)和通知(通过`<aop:before/>`、`<aop:after-returning/>`等标签)。 ##### 3.1 定义切入点 切入点定义了哪些连接点将被增强。在`<aop:aspect/>`内部,可以使用`<aop:pointcut/>`标签来定义一个或多个切入点。例如: ```xml <aop:pointcut id="serviceMethods" expression="execution(* com.example.service.*.*(..))"/> ``` 这个切入点匹配`com.example.service`包下所有类的所有方法。`execution`是指定切入点表达式的方式之一,它使用AspectJ的切入点表达式语法。 ##### 3.2 配置通知 一旦定义了切入点,就可以通过不同的通知类型来指定在切入点处执行的动作。以下是一些常见的通知类型及其配置示例: - **前置通知(Before Advice)**:在目标方法执行之前执行。 ```xml <aop:before method="beforeServiceMethod" pointcut-ref="serviceMethods"/> ``` 这里,`beforeServiceMethod`是切面类中定义的前置通知方法,`pointcut-ref`属性引用了之前定义的切入点`serviceMethods`。 - **后置通知(After Returning Advice)**:在目标方法正常执行后执行。 ```xml <aop:after-returning method="afterReturningServiceMethod" pointcut-ref="serviceMethods" returning="result"/> ``` `returning`属性用于指定一个参数名,该参数将接收目标方法的返回值,并在通知方法中作为参数使用。 - **异常通知(After Throwing Advice)**:在目标方法抛出异常后执行。 ```xml <aop:after-throwing method="afterThrowingServiceMethod" pointcut-ref="serviceMethods" throwing="ex"/> ``` `throwing`属性用于指定一个参数名,该参数将接收抛出的异常对象。 - **最终通知(After Advice)**:无论目标方法执行结果如何,都会执行。 ```xml <aop:after method="afterServiceMethod" pointcut-ref="serviceMethods"/> ``` #### 四、高级特性 除了基本的切入点与通知配置外,Spring AOP还提供了一些高级特性,如环绕通知(Around Advice)和引入(Introduction)。 - **环绕通知(Around Advice)**:它可以在目标方法执行前后执行自定义行为,甚至决定是否继续执行目标方法。环绕通知通过`<aop:around/>`标签配置,并需要实现`ProceedingJoinPoint`接口。 - **引入(Introduction)**:它允许向目标对象添加新的接口(及其实现),从而在不修改目标类代码的情况下扩展其功能。引入通过`<aop:declare-parents/>`标签实现,但这通常与`<aop:aspect/>`标签间接相关,因为它更多地用于声明式地修改对象的类型层次结构。 #### 五、总结 `<aop:aspect/>`标签是Spring AOP XML配置中的核心,它提供了一种灵活且强大的方式来声明切面,并通过切入点表达式和通知将横切关注点织入到目标对象中。通过合理使用`<aop:pointcut/>`、`<aop:before/>`、`<aop:after-returning/>`等标签,开发者可以轻松地实现日志记录、事务管理、安全控制等横切关注点,从而提高代码的可维护性和复用性。此外,Spring AOP还提供了环绕通知和引入等高级特性,以满足更复杂的需求。 在实际应用中,选择基于XML Schema的配置方式还是基于注解的配置方式(如`@Aspect`、`@Before`等),主要取决于项目的具体需求和开发团队的偏好。不过,无论采用哪种方式,Spring AOP都为面向切面编程提供了强大的支持。
上一篇:
AOP配置Schema-based 实现 - <aop:config/>
下一篇:
Pointcut Schema-based实现 - <aop:pointcut/>
该分类下的相关小册推荐:
SpringBoot零基础到实战
手把手带你学习SpringBoot-零基础到实战
Java并发编程实战
Java语言基础11-Java中的泛型
JAVA 函数式编程入门与实践
Java语言基础16-JDK8 新特性
Java语言基础1-基础知识
Java必知必会-Maven高级
Spring AOP 编程思想(上)
Mybatis合辑5-注解、扩展、SQL构建
Java语言基础5-面向对象初级
Spring Cloud微服务项目实战