弹簧在0处的AOP错误无法找到参考切入点

时间:2016-08-21 05:15:24

标签: java spring spring-boot aop spring-aop

我使用的是Java 8,spring 4.3和AspectJ 1.8.9。为什么我得到以下代码的以下错误。如果我在没有切入点的情况下使用@Before(" com.beans.Student.addCustomer()")我在0处得到此错误,则无法找到引用的切入点。使用带切入点的@Before时,我没有收到错误。

豆类:

@Aspect
public class Beforeaspect {

    /*
     * @Pointcut("execution(* com.beans.Student.addCustomer(..))") public void
     * log(){
     * }
     */

    // @Before("log()")
    @Before("com.beans.Student.addCustomer()")
    public void logBefore(JoinPoint jp) {
        System.out.println("logbefore");
        System.out.println("method " + jp.getSignature().getName());
    }
}

学生:

package com.beans;

public class Student implements Studentimpl {

    public void addCustomer() {
        System.out.println("addcustomer");
    }

    public String addCustomername(String stud) {
        System.out.println("addcustomername");
        return "hello";
    }
}

Spring xml文件:

<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-2.5.xsd    http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
    <aop:aspectj-autoproxy />
    <bean id="stud" class="com.beans.Student" />
    <bean class="com.beans.Beforeaspect" />
</beans>

1 个答案:

答案 0 :(得分:2)

您使用的语法错误用于方法执行。您的注释应该是:

@Before("execution(* com.beans.Student.addCustomer(..))")
public void logBefore(JoinPoint jp) {
    System.out.println("logbefore");
    System.out.println("method " + jp.getSignature().getName());
}

或者使用XML Bean:

<aop:aspectj-autoproxy />

<bean id="logAspect" class="nch.spring.aop.aspectj.LoggingAspect" />

<aop:config>
    <aop:aspect id="aspectLoggging" ref="logAspect">
        <aop:pointcut id="pointCutBefore" expression="execution(* com.beans.Student.addCustomer(..)))" />
        <aop:before method="logBefore" pointcut-ref="pointCutBefore" />
    <aop:aspect/>
<aop:config>