17

パラメータの位置に関係なく、特定の注釈で注釈が付けられたパラメータを含むメソッドに一致するようにポイントカット式を定義しようとしています。私の場合、@Constraint注釈を探しています。例えば:

マッチング方法:

public void method1(@Constraint Car car)

public void method2(String id, @Constraint Plane plane)

public void method3(Wheel wheel, @Constraint List<Train> trains, @Constraint Plane plane)

public void method4(Motor motor, @Constraint Set<Train> trains, Bicycle bike, Wheel wheel)

public void method5(Wing wing, Motorcycle moto, @Constraint Truck truck, Bicycle bike, Wheel wheel)

これまでのところ、次の式を試してみましたが、うまくいきませんでした:

@Before("execution(public * *.*(..)) and @args(com.example.Constraint)") // there can be only one parameter
@Before("execution(public * *.*(..)) and @args(..,com.example.Constraint)") // parameter must be in last position
@Before("execution(public * *.*(..)) and @args(com.example.Constraint,..)") // parameter must be in first position
@Before("execution(public * *.*(..)) and (@args(com.example.Constraint,..) or @args(..,com.example.Constraint))") // parameter must be in first or last position, nothing in between
@Before("execution(public * *.*(..)) and @args(..,com.example.Constraint,..)") // Invalid

誰かが私に正しい解決策を教えてもらえますか? それは可能ですか?

4

2 に答える 2

17

args()あいまいさにつながる可能性があるため、AspectJを介して任意の位置に引数をバインドすることはできません。同じ型の (またはこの場合は同じ注釈型で注釈が付けられた) 2 つ以上のパラメーターがあると想像してください。args()名前付きパラメーターにバインドする必要があるのはどれですか? そうしているうちに

execution(public * *(.., @Deprecated (*), ..))

単独の表現としては可能です (星の周りの括弧に注意してください)。 と組み合わせることはできませんargs()。したがって、メソッドの実行自体をインターセプトするだけでなく、指定されたアノテーションを使用して最初またはすべてのパラメーターを見つけたい場合は、他の記事で示したとおりにする必要があります。私はちょっと繰り返していますが、答えが再び削除されないようにするためです:

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

@Retention(RetentionPolicy.RUNTIME)
public @interface Constraint {}
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

public class Application {
    public void method1(@Constraint int i) {}
    public void method2(String id, @Constraint float f) {}
    public void method3(int i, @Constraint List<String> strings, @Constraint String s) {}
    public void method4(int i, @Constraint Set<Integer> numbers, float f, boolean b) {}
    public void method5(boolean b, String s, @Constraint String s2, float f, int i) {}
    public void notIntercepted(boolean b, String s, String s2, float f, int i) {}

    public static void main(String[] args) {
        List<String> strings = new ArrayList<String>();
        strings.add("foo");
        strings.add("bar");
        Set<Integer> numbers = new HashSet<Integer>();
        numbers.add(11);
        numbers.add(22);
        numbers.add(33);

        Application app = new Application();
        app.method1(1);
        app.method2("foo", 1f);
        app.method3(1, strings, "foo");
        app.method4(1, numbers, 1f, true);
        app.method5(false, "foo", "bar", 1f, 1);
        app.notIntercepted(false, "foo", "bar", 1f, 1);
    }
}
import java.lang.annotation.Annotation;

import org.aspectj.lang.SoftException;
import org.aspectj.lang.reflect.MethodSignature;

public aspect ArgCatcherAspect {
    before() : execution(public * *(.., @Constraint (*), ..)) {
        System.out.println(thisJoinPointStaticPart);
        MethodSignature signature = (MethodSignature) thisJoinPoint.getSignature();
        String methodName = signature.getMethod().getName();
        Class<?>[] parameterTypes = signature.getMethod().getParameterTypes();
        Annotation[][] annotations;
        try {
            annotations = thisJoinPoint.getTarget().getClass().
                getMethod(methodName, parameterTypes).getParameterAnnotations();
        } catch (Exception e) {
            throw new SoftException(e);
        }
        int i = 0;
        for (Object arg : thisJoinPoint.getArgs()) {
            for (Annotation annotation : annotations[i]) {
                if (annotation.annotationType() == Constraint.class)
                    System.out.println("  " + annotation + " -> " + arg);
            }
            i++;
        }
    }
}

ご覧のとおり、宣言された型だけでなく、特定のパラメーターの注釈を取得するのは少しトリッキーですが、基本的には以前の投稿と同じように機能します。つまり、引数のリストを反復処理します。

于 2013-03-24T23:28:43.813 に答える
2

execution(public * *.*(.., @com.example.Constraint *, ..)いくつかの構文を法として、が必要だと思います。

于 2012-08-01T21:18:55.840 に答える