码迷,mamicode.com
首页 > 编程语言 > 详细

Spring AOP 关键词的理解

时间:2014-05-26 17:27:43      阅读:569      评论:0      收藏:0      [点我收藏+]

标签:style   c   class   blog   http   a   

1.如下图所示:

  bubuko.com,布布扣

  AOP的执行就是在什么时候什么地方做什么

2.关键词理解:

  连接点(JoinPoint): 就是能够作为切点的一个个动作(方法),当然实际上不是所有连接点都当做切点的。

  切点(Poincut):链接点中的一个或多个,切面会在这些点上来做文章(切点就是什么地方)。

  通知(Advice):通知是在切点上什么时候做什么

      通知有下列几种类型:Before,After,After-returning,

      After-throwing,Around

  切面(Aspect):切面包括切点和切面(什么时候什么地方做什么)。

3.配置:

  <aop:config>  

   <!--切面 包括切点和通知-->

        <aop:aspect id="TestAspect" ref="aspectBean">  

    <!--切点 什么地方-->

            <aop:pointcut id="businessService"  expression="execution(* com.spring.service.*.*(..))" />  

    <!--通知 什么时候做什么-->

            <aop:before pointcut-ref="businessService" method="doBefore"/>  

            <aop:after pointcut-ref="businessService" method="doAfter"/>  

            <aop:around pointcut-ref="businessService" method="doAround"/>  

            <aop:after-throwing pointcut-ref="businessService" method="doThrowing" throwing="ex"/>  

        </aop:aspect>  

    </aop:config>

Spring AOP 关键词的理解,布布扣,bubuko.com

Spring AOP 关键词的理解

标签:style   c   class   blog   http   a   

原文地址:http://www.cnblogs.com/localhost8888/p/3752714.html

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