Spring - Aspect没有在运行时应用

时间:2009-11-06 20:41:21

标签: spring aop aspectj

我有以下配置:


@Aspect
public class MyAspect {

 @Around(@annotation(SomeAnnotation))
 public Object myMethod(ProceedingJoinPoint joinPoint) throws Throwable {
   System.out.println("Hello...");
 }
}

并具有以下bean定义:

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
        http://www.springframework.org/schema/aop 
        http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
    <bean id="myAspect" class="MyAspect" />
</beans>

我发现行为未在运行时应用于@SomeAnnotation带注释的方法。知道为什么吗?

THX。

2 个答案:

答案 0 :(得分:2)

你有enabled AspectJ support吗?

您需要添加

<aop:aspectj-autoproxy/>

到你的bean上下文。

答案 1 :(得分:2)

确保具有@SomeAnnoation的类是由Spring容器创建的。 Spring通过创建包装对象的代理类将AOP应用于从容器中检索的类。然后,此代理类在调用该对象的方法之前和之后执行Aspect。

如果您不确定尝试调试到您正在使用该课程的位置。您应该看到该对象不是您的类的实例,而是代理对象。