添加aop配置后抛出异常

Throw Exception after add aop config

起初,我有一个 spring 应用程序工作正常:

但是当像这样将 aop 配置添加到 aop.xml 时,它会抛出一个非常 lang 的异常。

这是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 让 rat 在 cat 标记之前做一些动作。

我有配置 XML 文件,它是从一些教程中复制的,但我找不到它有什么问题。


是的,我想念 aspectjweaver.jar,而 org.springframework.context 是必需的。 这是解决方案:

你已经编辑了你的问题,所以我正在编辑我的答案,因为现在我可以重现你的问题。

其实你原来的切入点是正确的。忘了我说的不对吧,我第一眼看到就解析错了。只需将其改回仅使用单个 *,请:

execution(* com.animal.Cat.mark(..))

现在我认为你的问题要简单得多,从你之前发布的调用堆栈来看,但为了用不完整的调用堆栈的屏幕截图来替换它而被切断。但我在你问题的历史记录中找到了它,查看旧版本:

...
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