如何使用aspectJ切入点不匹配强制编译错误

时间:2017-01-17 13:43:55

标签: java maven aspectj aspectj-maven-plugin

我有以下几个方面的切入点:

@Around(value="execution(* *(*,Map<String, Object>)) && @annotation(com.xxx.annotations.MyCustomAnnotation)")

正如您所看到的,此切入点仅匹配使用com.xxx.annotations.MyCustomAnnotation注释的方法,这些方法有2个参数 - 第一个是任意的,第二个必须是Map<String, Object>类型。

如果找到使用com.xxx.annotations.MyCustomAnnotation注释但不匹配签名* *(*,Map<String, Object>)的方法,是否有办法配置aspectj-maven-plugin以强制编译错误?

或换句话说,:

@com.xxx.annotations.MyCustomAnnotation
public void test(String s, Map<String, String> m) {
   ...
}

- &GT;我希望这会产生编译时错误,因为Map<String, String>!= Map<String, Object>

1 个答案:

答案 0 :(得分:3)

您可以在某个方面直接执行此操作,无需在AspectJ Maven插件中进行配置。这是一个小样本:

标记注释:

package de.scrum_master.app;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

@Retention(RetentionPolicy.RUNTIME)
public @interface MyCustomAnnotation {}

示例应用程序类:

package de.scrum_master.app;

import java.util.Map;

public class Application {
    public void notAnnotated(String s, Map<String, Object> m) {}

    @MyCustomAnnotation
    public void correctSignature(String s, Map<String, Object> m) {}

    @MyCustomAnnotation
    public void wrongSignature(String s, Map<String, String> m) {}
}

方面声明方法签名不匹配时的编译错误:

package de.scrum_master.aspect;

import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.DeclareError;

@Aspect
public class PointcutChecker {
    @DeclareError(
        "execution(* *(..)) && " +
        "@annotation(de.scrum_master.app.MyCustomAnnotation) && " +
        "!execution(* *(*, java.util.Map<String, Object>))"
    )
    static final String wrongSignatureError =
        "wrong method signature for @MyCustomAnnotation";
}

编译此代码时,您将在Eclipse中看到以下错误作为代码注释并在问题视图中(Maven控制台在执行AspectJ Maven的compile目标时会显示相同的错误):

Eclipse editor error marker

Eclipse problem view