博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring切面处理
阅读量:6612 次
发布时间:2019-06-24

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

切面类DictionaryAOP 里面有一个全局变量systemTestDomain

<bean id="dictionaryAOP" class="test.DictionaryAOP">

<property name="systemTestDomain">
<ref bean="systemTestDomain"/>
</property>
</bean>

<aop:config>
<aop:aspect id="dictionaryAspect" ref="dictionaryAOP">
<!-- 切入点配置 只切入接口,不切入实现类 -->

<!-- 切入点配置 只切入接口,不切入实现类 ,在执行add开头或者modify开头的方法后并且不是实体类调用,执行DictionaryAOP的afterDML方法-->

<aop:pointcut id="dictionaryPointcut"
expression="execution(* test.SystemTestDomain.add*(..))  or execution(* test.SystemTestDomain.modify*(..)) and not execution(* test.SystemTestDomain*Impl.*(..))" />
<aop:after pointcut-ref="dictionaryPointcut" method="afterDML"/>
</aop:aspect>
</aop:config>

转载地址:http://puaso.baihongyu.com/

你可能感兴趣的文章
mysql char和varchar区别
查看>>
Modbus RTU 通信工具设计
查看>>
服务化改造实践 | 如何在 Dubbo 中支持 REST
查看>>
Logwatch linux日志监视器解析
查看>>
【第8章】JVM内存管理
查看>>
在绿色的河流上
查看>>
ovirt官方安装文档 附录G
查看>>
磁盘故障小案例
查看>>
了解相关.NET Framework不同组件区别及安装知识
查看>>
ToughRADIUS快速指南
查看>>
HTML
查看>>
【转】左手坐标系和右手坐标系
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
POJ 3335 Rotating Scoreboard 半平面交
查看>>
window.location.href和window.location.replace的区别
查看>>
《Gamestorming》读书笔记
查看>>
域名和网址链接被微信浏览器拦截怎么办 微信屏蔽网址打开如何解决
查看>>
使用SQL Server Analysis Services数据挖掘的关联规则实现商品推荐功能(二)
查看>>
ubuntu下安装jdk
查看>>