使用AspectJ的Spring AOP介绍

时间:2013-06-18 18:25:06

标签: java aspectj spring-aop

我是SpringAOP的新手。我想写一些简介的简单示例,但无法清楚地了解它必须如何工作。

在文档中我发现:

Introduction: declaring additional methods or fields on behalf of a type. Spring AOP allows you to introduce new interfaces (and a corresponding implementation) to any advised object. For example, you could use an introduction to make a bean implement an IsModified interface, to simplify caching. (An introduction is known as an inter-type declaration in the AspectJ community.)

我写了一个简单的例子: 我用一种方法编写简单的类

public class Test {
    public void test1(){
        System.out.println("Test1");
    }
}

然后我编写实现此接口的接口和类

public interface ITest2 {
    void test2();
}

public class Test2Impl implements ITest2{
    @Override
    public void test2() {
        System.out.println("Test2");
    }
}

最后我的方面

@Aspect
public class AspectClass {

    @DeclareParents(
            value = "by.bulgak.test.Test+",
            defaultImpl = Test2Impl.class
    )
    public static ITest2 test2;
}

我的spring配置文件如下所示:

<aop:aspectj-autoproxy/>
<bean id="aspect" class="by.bulgak.aspect.AspectClass" />

所以我的问题: 我现在怎么能这样呢我需要在我的主要课程中写到海上结果? 也许我需要写一些其他的课程。(我在其中读到有关SpringAOP的书,我找不到完整的例子)

更新

我的主要方法如下:

public static void main(String[] args) {
    ApplicationContext appContext = new ClassPathXmlApplicationContext("spring-configuration.xml");
    Test test = (Test) appContext.getBean("test");
    test.test1();
    ITest2 test2 = (ITest2) appContext.getBean("test");
    test2.test2();

}

当我执行我的应用程序时,我收到此错误:

Exception in thread "main" java.lang.ClassCastException: com.sun.proxy.$Proxy5 cannot be cast to by.bulgak.test.Test

在这一行:

Test test = (Test) appContext.getBean("test");

1 个答案:

答案 0 :(得分:3)

首先,您需要在配置文件中定义bean Test

<bean id="test" class="Test" />

然后在main中,从ApplicationContext获取此bean:

Test test1 = (Test) context.getBean("test");

现在,从test1引用,您只能调用Test bean中定义的方法。要使用新引入的行为,您需要对包含该行为的接口进行类型转换:

ITest2 test2 = (ITest2) context.getBean("test");

然后,您可以从此引用中访问Test2的方法:

test2.test2();

这将调用bean中定义的方法,如defaultImpl注释的@DeclareParents属性中指定的那样。