首页 > 编程语言 > 详细

Spring AOP 关键词的理解

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

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 关键词的理解

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!