在使用Spring Aop的时候,有时会拦截不到希望拦截的方法...
有时2.0可以但2.5却不可以~
Spring Aop 代理 有两种:Java动态代理和Cglib代理
一般我用的是Cglib代理..<aop:config proxy-target-class="true">
只要在被spring拦截的方法中再调用其他被代理的对象的方法就可以实现嵌套拦截,
如果调用自己对象的方法(包括继承的),
只是普通对象的方法调用(这时自己是被剥去了代理的壳的原始对象),
是不能被拦截的。
Debug下,看一下是不是proxy的类,被proxy的才有可能被拦截..
另外: 使用groovy时,不能对注入groovy Bean的java类进行AOP.(接口编程)
会报以下错误:
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'messenger': BeanPostProcessor before instantiation of bean failed; nested exception is org.springframework.aop.framework.AopConfigException: Could not generate CGLIB subclass of class [class $Proxy74]: Common causes of this problem include using a final class or a non-visible class; nested exception is java.lang.IllegalArgumentException: Cannot subclass final class class $Proxy74
<lang:groovy id="messenger" refresh-check-delay="5000" script-source="classpath:groovy/Messenger.groovy">
<lang:property name="message" value="I Can Do The Frug" />
</lang:groovy>
<bean id="testPageAction" class="cn.edu.hust.mes.test.TestPageAction">
<dwr:remote javascript="test"></dwr:remote>
<property name="messenger" ref="messenger"></property>
</bean>