このアノテーションクラスがあるとします
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface MethodXY {
public int x();
public int y();
}
public class AnnotationTest {
@MethodXY(x=5, y=5)
public void myMethodA(){ ... }
@MethodXY(x=3, y=2)
public void myMethodB(){ ... }
}
それでは、オブジェクトを調べて、@ MethodXYアノテーションを使用してメソッドを「シーク」し、その要素x = 3、y = 2、およびそれを呼び出す方法はありますか?
ありがとう
特定の注釈付きのメソッドを返すメソッドは次のとおりです。
public static List<Method> getMethodsAnnotatedWith(final Class<?> type, final Class<? extends Annotation> annotation) {
final List<Method> methods = new ArrayList<Method>();
Class<?> klass = type;
while (klass != Object.class) { // need to iterated thought hierarchy in order to retrieve methods from above the current instance
// iterate though the list of methods declared in the class represented by klass variable, and add those annotated with the specified annotation
final List<Method> allMethods = new ArrayList<Method>(Arrays.asList(klass.getDeclaredMethods()));
for (final Method method : allMethods) {
if (method.isAnnotationPresent(annotation)) {
Annotation annotInstance = method.getAnnotation(annotation);
// TODO process annotInstance
methods.add(method);
}
}
// move to the upper class in the hierarchy in search for more methods
klass = klass.getSuperclass();
}
return methods;
}
特定のニーズに合わせて簡単に変更できます。 Plsは、必要な注釈を持つメソッドを見つけるために、提供されたメソッドがクラス階層をトラバースすることに注意してください。
特定のニーズに対応する方法を次に示します。
public static List<Method> getMethodsAnnotatedWithMethodXY(final Class<?> type) {
final List<Method> methods = new ArrayList<Method>();
Class<?> klass = type;
while (klass != Object.class) { // need to iterated thought hierarchy in order to retrieve methods from above the current instance
// iterate though the list of methods declared in the class represented by klass variable, and add those annotated with the specified annotation
final List<Method> allMethods = new ArrayList<Method>(Arrays.asList(klass.getDeclaredMethods()));
for (final Method method : allMethods) {
if (method.isAnnotationPresent(MethodXY.class)) {
MethodXY annotInstance = method.getAnnotation(MethodXY.class);
if (annotInstance.x() == 3 && annotInstance.y() == 2) {
methods.add(method);
}
}
}
// move to the upper class in the hierarchy in search for more methods
klass = klass.getSuperclass();
}
return methods;
}
見つかったメソッドの呼び出しについては、 tutorial を参照してください。ここでの潜在的な問題の1つは、メソッドの引数の数です。これは、見つかったメソッド間で異なるため、追加の処理が必要です。
このコードサンプルを試してください:
import Java.lang.annotation.Annotation;
import Java.lang.reflect.Method;
import Java.lang.annotation.Retention;
import Java.lang.annotation.RetentionPolicy;
import Java.lang.annotation.Target;
import Java.lang.annotation.ElementType;
import Java.lang.reflect.InvocationTargetException;
class AnotTest {
public static void main(String... args) {
AnnotationTest at = new AnnotationTest();
for (Method m : at.getClass().getMethods()) {
MethodXY mXY = (MethodXY)m.getAnnotation(MethodXY.class);
if (mXY != null) {
if (mXY.x() == 3 && mXY.y() == 2){
try {
m.invoke(at);
} catch (IllegalAccessException e) {
//do nothing;
} catch (InvocationTargetException o) {
//do nothing;
}
}
}
}
}
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
static public @interface MethodXY {
public int x();
public int y();
}
static class AnnotationTest {
@MethodXY(x=5, y=5)
public void myMethodA() {
System.out.println("boo");
}
@MethodXY(x=3, y=2)
public void myMethodB() {
System.out.println("foo");
}
}
}