Spring 4 AOP:获取异常java.lang.IllegalArgumentException:切入点

时间:2019-01-20 17:20:33

标签: java spring java-ee spring-aop spring-4

我正在尝试使用Spring Advice参数运行Spring AOP演示程序。执行以下代码时,出现异常“ java.lang.IllegalArgumentException:在切入点:: 0正式未绑定时出错”。请帮助我了解以下代码有什么问题。

Performance.java

package com.aop.annotations.example4;

public interface Performance {

    public void perform(int performanceNum, String performanceName) throws Exception;

    public void buyTicket(int price) throws Exception;
}

CircusPerformance.java

package com.aop.annotations.example4;

public class CircusPerformance implements Performance {

    @Override
    public void perform(int performanceNum, String performanceName) throws Exception {
        System.out.println("Circus Performance number:"+performanceNum+" and Performance name :"+performanceName+" in progress..");
    }

    @Override
    public void buyTicket(int price){
        System.out.println("Buy Ticket for Circus performance");
    }
}

DancePerformance.java

package com.aop.annotations.example4;

public class DancePerformance implements Performance{

    @Override
    public void perform(int performanceNum, String performanceName) throws Exception {
        System.out.println("Dance Performance number:"+performanceNum+" and Performance name :"+performanceName+" in progress..");
    }

    @Override
    public void buyTicket(int price) throws Exception {
        System.out.println("Buy Ticket for Dance performance");
    }
}

Audience.java

package com.aop.annotations.example4;

import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.stereotype.Component;

@Aspect
@Component
public class Audience {
    @Pointcut("execution(* com.aop.annotations.example4.Performance.*(..)) && args(int,String)")
    public void performance() {
    }

    @Pointcut("execution(* com.aop.annotations.example4.Performance.*(..)) && args(int)")
    public void buyTicket() {
    }

    @After("buyTicket()")
    public void afterTicket(JoinPoint jp, int price) {
        System.out.println("Start of method: " + jp.getSignature().getName() + " of Class: "
                + jp.getTarget().getClass().getSimpleName());
        System.out.println("Buying Ticket of Price :" + price);
        System.out.println("Silencing cell phones");
        System.out.println("Taking seats");
    }

    @Before("performance()")
    public void beforePerformance(JoinPoint jp, int performanceNum, String performanceName) {
        System.out.println("Start of method: " + jp.getSignature().getName() + " of Class: "
                + jp.getTarget().getClass().getSimpleName());
        System.out.println("Performance Number :" + performanceNum + "+ is :" + performanceName);
    }

    @After("performance()")
    public void afterPerformance(JoinPoint jp,int performanceNum, String performanceName) {
        System.out.println("End of method: " + jp.getSignature().getName() + " of Class: "
                + jp.getTarget().getClass().getSimpleName());
        System.out.println("End of PerformanceName :" + performanceName);
        System.out.println("CLAP CLAP CLAP!!!");
    }

}

TestAOPMain.java

package com.aop.annotations.example4;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class TestAOPMain {

    public static void main(String args[]) {
        try {
            ApplicationContext context = new ClassPathXmlApplicationContext("appContext4.xml");
            Performance dancePerformance = context.getBean("dance", DancePerformance.class);
            dancePerformance.buyTicket(100);
            dancePerformance.perform(1,"Bhangra Dance");
            dancePerformance.perform(2,"Garba Dance");
            dancePerformance.perform(3,"Bharatnatyam Dance");
            dancePerformance.perform(4,"Folk Dance");

            Performance circusPerformance = (CircusPerformance) context.getBean("circus");
            circusPerformance.buyTicket(200);
            circusPerformance.perform(1,"Ball Juggling");
            circusPerformance.perform(2,"Animal act");
            circusPerformance.perform(3,"Rope Jump");
            circusPerformance.perform(4,"Magic Show");

        } catch (Exception e) {
            System.out.println(e.getMessage());
        }

    }

}

aopContext4.xml:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xsi:schemaLocation="http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
    <context:component-scan base-package="com.aop.annotations.example4" />
    <aop:aspectj-autoproxy proxy-target-class="true" />
    <bean id = "dance" class="com.aop.annotations.example4.DancePerformance" />
    <bean id = "circus" class="com.aop.annotations.example4.CircusPerformance" />
</beans>

例外:

WARNING: Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.context.event.internalEventListenerProcessor': Initialization of bean failed; nested exception is java.lang.IllegalArgumentException: error at ::0 formal unbound in pointcut 
Error creating bean with name 'org.springframework.context.event.internalEventListenerProcessor': Initialization of bean failed; nested exception is java.lang.IllegalArgumentException: error at ::0 formal unbound in pointcut 

1 个答案:

答案 0 :(得分:0)

如果在方面的建议中不需要方法参数值,则不应使用args(),而应在切入点中指定方法签名,如下所示:

@Pointcut("execution(* com.aop.annotations.example4.Performance.*(int, String))")
public void performance() {}

@Pointcut("execution(* com.aop.annotations.example4.Performance.*(int))")
public void buyTicket(int price) {}

只有代码确实需要访问参数时,才应使用args(),但随后还需要将参数添加到切入点,而不仅仅是建议。如果直接在建议中定义切入点,则只需执行一次。单独定义切入点IMO仅在要在同一方面的多个建议中重用同一切入点时才有用。无论如何,您要执行的操作是为了修复您的代码(我没有运行它,只是编写了“免提”):

@Pointcut("execution(* com.aop.annotations.example4.Performance.*(..)) && args(performanceNum, performanceName)")
public void performance(int performanceNum, String performanceName) {}

@Pointcut("execution(* com.aop.annotations.example4.Performance.*(..)) && args(price)")
public void buyTicket(int price) {}

顺便说一句,错误消息“切入点中的形式上未绑定”表示您没有通过args()this()target()或{正确地将形式参数绑定到通知方法签名中{1}}。或相反,切入点语法正确,但方法签名错误。