0

我只是在用 Spring (2.5) 玩 AspectJ (1.6),但它似乎没有以正确的方式工作。我使用以下方法设置了我的“beans.xml”:

<aop:aspectj-autoproxy/>
<bean id="testBean1" class="apackage.MyClass">
<bean id="aopBean1" class="apackage.AfterReturningExample"/>

设置了正确的命名空间和其他一些不重要的 bean。我使用一个简单的 bean 来测试建议:

package apackage;

        @Aspect
        public class MyClass {

            public MyClass()
            {

            }
                public Boolean testAspectJ()
                {
                        System.out.println("returning from MyClass.testAspectJ()");
                        return false;
                }
        }

这是 aop bean:

package apackage;    
@Aspect 
    public class AfterReturningExample {
        public AfterReturningExample(){}
        @AfterReturning("execution(* apackage.MyClass.*(..))")
        public void test() throws Exception{

            System.err.println("\n\n####  After Returning MyClass.testAspectJ()\n\n");
        }
    }

最后这是测试代码(在 main 方法中):

ApplicationContext ctx = new ClassPathXmlApplicationContext("apackage/beans.xml"); 
MyClass bean = (MyClass) ctx.getBean("testBean1"); 
bean.testAspectJ();

输出仅打印:

returning from MyClass.testAspectJ()

奇怪的是,如果我使用切入点:

"execution(public * *(..))"

日志显示了 AfterReturningExample 类的 System.out.println。我错过了什么?

4

1 回答 1

0

找到解决方案!首先,MyClass不是 Aspect,所以不需要@Aspect注释。第二件事,MyClass必须是给定接口的实现(说MyClassInterface),并且在测试代码中,我最好使用MyClassInterface bean = (MyClassInterface) ctx.getBean("testBean1");. 我可以使用类代理,而不是接口,前提是在我添加的beans.xml<aop:aspectj-autoproxy proxy-target-class="true"/>和类路径中的 CGLIB 库中。

于 2010-09-19T23:00:12.860 回答