博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring AOP 关键词的理解
阅读量:5280 次
发布时间:2019-06-14

本文共 875 字,大约阅读时间需要 2 分钟。

1.如下图所示:

  

  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>

转载于:https://www.cnblogs.com/localhost8888/p/3752714.html

你可能感兴趣的文章
其他ip无法访问Yii的gii,配置ip就可以
查看>>
js创建对象
查看>>
有状态EJBBean和无状态的EJBBean
查看>>
设计模式的几种原则
查看>>
使用json格式输出
查看>>
border-image属性在chrome中的不同效果
查看>>
php做的一个简易爬虫
查看>>
x的x次幂的值为10,求x的近似值
查看>>
hdu-5009-Paint Pearls-dp
查看>>
Codeforces Round #246 (Div. 2)
查看>>
内存泄漏调查
查看>>
jquery获取html元素的绝对位置和相对位置的方法
查看>>
谈谈spring
查看>>
ios中webservice报文的拼接
查看>>
Power BI 报告的评论服务支持移动设备
查看>>
MySQL 5.7社区版安装实践
查看>>
vue-auto-focus: 控制自动聚焦行为的 vue 指令
查看>>
docker入门学习(四) 安装nginx及配置
查看>>
BottomNavigationBarItem fixed
查看>>
[BZOJ1601] [Usaco2008 Oct] 灌水 (kruskal)
查看>>