spring in action学习笔记 3 AOP的自动代理
6.自动代理aop
自动代理能够让切面的切点定义来决定哪个Bean需要代理,不需要为特定的bean创建代理了。共2种自动代理,spring提供的和aspectJ提供的。
为了使用spring提供的自动代理,要在xml中声明
现在所有的xml加起来,是这样的了:
这样就可以了
运行一下测试
<aop:after-throwing method="demandRefund" pointcut-ref="performance"/>才对吧。 3 楼 Rooock 2009-02-04 可以附上工程源码吗?
之前我一直使用纯AspectJ做AOP.
现在希望对比下Spring的AOP和AspectJ.
谢谢你.