我是 SpringAOP 的新手。我想写一个简单的介绍示例,但无法清楚地理解它必须如何工作。
在文档中我发现:
我写了一个简单的例子:我用一种方法写了一个简单的类
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;
}
我的弹簧配置文件如下所示:
<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");