我这里做了一个简单的基于注解驱动的demo,想学习aop,遇到一个奇怪问题,为什么我加了AnnotationAwareAspectJAutoProxyCreator以后,advice就执行了2次,不加就正常的执行了一次,请看代码:
这个是最基本的一个Service
[code="java"]
package com.demo;
import org.springframework.stereotype.Service;
@Service
public class UserService {
public void add(){
System.out.println("add method..");
}
}
[/code]
这个是我的advice
[code="java"]
package com.demo;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.springframework.stereotype.Component;
@Aspect
@Component
public class UserAdvice {
private static int n = 1;
@Before("execution (* com.demo.UserService.add(..))")
public void test(){
System.out.println("advice test method n = "+n);
n++;
}
}
[/code]
这个是我的执行方法:
[code="java"]
package com.demo;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class Main {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
UserService service =(UserService) context.getBean("userService");
service.add();
}
}
[/code]
这个是我的spring配置文件(bean.xml)中最精简的说明:
[quote]
/context:component-scan
<aop:aspectj-autoproxy></aop:aspectj-autoproxy>
[/quote]
当我执行main方法的时候,控制台上输出一下内容:
[quote]
advice test method n = 1
add method..
[/quote]
以上是正常的,看是我在配置文件中,多加了AnnotationAwareAspectJAutoProxyCreator以后,就出现奇怪问题,也就是配置文件被我改成以下样子:
[quote]
/context:component-scan
<aop:aspectj-autoproxy></aop:aspectj-autoproxy>
<bean class="org.springframework.aop.aspectj.annotation.AnnotationAwareAspectJAutoProxyCreator">
<property name="proxyTargetClass" value="true"></property>
</bean>
[/quote]
这个时候再执行main方法,我只执行了UserService中的add()方法一次,控制台上就输出这个样子
[quote]
advice test method n = 1
advice test method n = 2
add method..
[/quote]
注意到了吗?等于我的advice中的切入方法test被执行了2次,这是为什么呢?
AnnotationAwareAspectJAutoProxyCreator是啥玩意?网上的教学说要加上,而我不加也一样正常执行,加上反而多执行了一次test方法,我加不加AnnotationAwareAspectJAutoProxyCreator有什么区别吗?
望老师们帮忙,谢谢。
额,我用的是spring3.2
[img]http://dl.iteye.com/upload/attachment/0069/9447/a4670f4b-e62a-37a9-9f5e-128f627aceff.jpg[/img]