首先,我有一个弹簧应用程序正常工作:
但是当像这样将aop配置添加到aop.xml时,它会引发一个非常严重的异常。
这是AOP.java:
import org.springframework.beans.factory.BeanFactory;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import com.animal.Cat;
public class AOP {
public static void main(String args[]){
System.out.println("1");
BeanFactory factory = new ClassPathXmlApplicationContext("aop.xml");
Cat c1 =(Cat)factory.getBean("cat1");
System.out.println("2");
c1.mark();
}
}
这是Cat.java:
package com.animal;
public class Cat {
public void mark(){
System.out.println("cat is mark");
}
}
这是Rat.java:
package com.animal;
public class Rat {
public void sleep(){
System.out.println("rat is sleep");
}
public void run(){
System.out.println("rat running");
}
}
这是xml文件:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
">
<bean id="cat1" class="com.animal.Cat">
</bean>
<bean id="rat1" class="com.animal.Rat">
</bean>
<aop:config>
<aop:pointcut id="cat_mark" expression="execution(public void com.animal.Cat.mark())" />
<aop:aspect ref="rat1">
<aop:before method="sleep" pointcut-ref="cat_mark" />
<aop:after method="run" pointcut-ref="cat_mark" />
</aop:aspect>
</aop:config>
正如你所看到的,这是一个非常简单的应用程序,我只想使用spring AOP让老鼠在猫去标记之前做一些动作。
我有一些配置XML文件可以从一些教程中复制,但我找不到它的错误。
是的,我想念aspectjweaver.jar
org.springframework.context
要求的int count;
。
这是解决方案:
答案 0 :(得分:1)
您已编辑过您的问题,因此我正在编辑我的答案,因为现在我可以重现您的问题。
实际上你的原始切入点是正确的。忘记我说的错误,我第一次看到它时解析错了。只需将其更改为仅使用一个*
,请:
execution(* com.animal.Cat.mark(..))
现在我认为你的问题要简单得多,从你之前发布的callstack来看,但是为了用一个不完整的callstack的屏幕截图替换掉它。但是我在你的问题的历史中找到了它,看着旧版本:
...
Caused by: java.lang.ClassNotFoundException: org.aspectj.weaver.reflect.ReflectionWorld$ReflectionWorldException
我相信您在运行应用程序时忘记在类路径上放置aspectjweaver.jar
(或类似aspectjweaver-1.8.13
的版本名称)。这样做,它应该消失。如果我这样做,您的应用程序将打印:
1
Apr 20, 2018 6:04:34 PM org.springframework.context.support.ClassPathXmlApplicationContext prepareRefresh
INFORMATION: Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@18769467: startup date [Fri Apr 20 18:04:34 ICT 2018]; root of context hierarchy
Apr 20, 2018 6:04:35 PM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
INFORMATION: Loading XML bean definitions from class path resource [aop.xml]
2
rat is sleep
cat is mark
rat running