码迷,mamicode.com
首页 > 其他好文 > 详细

AOP编程

时间:2021-06-05 17:37:48      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:文件   --   span   expand   containe   asp   pre   int   top   

一 什么是AOP

   AOP(Aspect Oriented Programming  面向切面编程). 这种编程的目的在于 在不修改原由类的功能的情况下, 给类的功能进行加强. 感觉功能上和装饰设计模式 有点类似. 切面编程采用的是动态代理的方式实现的.

 

二 一些术语

  • Target(目标对象):被代理的对象就是目标对象

  • 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)

 

AOP编程

标签:文件   --   span   expand   containe   asp   pre   int   top   

原文地址:https://www.cnblogs.com/mtyJavaRecord/p/14851313.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!