标签:文件 -- span expand containe asp pre int top
一 什么是AOP
AOP(Aspect Oriented Programming 面向切面编程). 这种编程的目的在于 在不修改原由类的功能的情况下, 给类的功能进行加强. 感觉功能上和装饰设计模式 有点类似. 切面编程采用的是动态代理的方式实现的.
二 一些术语
Proxy(代理对象):被增强后的对象就是代理对象
Joinpoint(连接点):就是目标对象中所有被拦截到的方法
Pointcut(切入点):就是目标对象中被增强的方法
Advice(通知):执行目标方法之前或者之后调用的方法就是通知
Aspect(切面):通知方法和切入点方法结合所在的位置叫做切面 (切点+通知=切面)
Weaving(织入):通知方法和切入点方法结合的过程,织入之后的结果就是切面
三 配置文件,注解实现AOP编程
3.1 配置文件(xml)
<aop:config>
<!-- 配置切入点(我们需要加强的方法)表达式 -->
<aop:pointcut id="pt" expression="execution(* com.ty.service.StudentService.*(..))"/>
<!-- 配置切面(切入点+通知方法) -->
<aop:aspect ref="advice">
<!-- 调用通知方法 -->
<aop:around method="around" pointcut-ref="pt"/>
</aop:aspect>
</aop:config>
3.2 注解
在 Advice 类 前面 加上 切面标识 (@Aspect) 在需要的通知方法上写上对应的注解, 例如(@Around("execution(* com.ty.service.impl.StudentServiceImpl.*(..))")
在SpringConfig 类前面 也要加上 启用切面编程标识(@EnableAspectJAutoProxy)
标签:文件 -- span expand containe asp pre int top
原文地址:https://www.cnblogs.com/mtyJavaRecord/p/14851313.html