gpt4 book ai didi

java - 如何使用给定的注释运行所有方法?

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:57:06 24 4
gpt4 key购买 nike

这就是我想要发生的事情:

public class MainClass {
public static void main(String args[]) {
run @mod(); // run all methods annotated with @mod annotation
}
}

注解声明:

@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface mod {
String name() default "";
}

要调用的方法:

public class Good {
@mod (name = "me1")
public void calledcs(){
System.out.println("called");
}

@mod (name = "me2")
public void calledcs2(){
System.out.println("called");
}
}

或者有其他方法可以达到同样的目的吗?

最佳答案

您可以使用类路径扫描来做到这一点:基本上,您遍历类路径中每个类的每个方法,并使用给定的注释获取所有注释。之后,调用找到的方法。

下面是可以执行此操作的 runAllAnnotatedWith() 方法。它使用 Reflections 做类路径扫描的脏活。 为简单起见,它执行所有找到的方法,就好像它们是静态并且不需要参数一样。

public static void runAllAnnotatedWith(Class<? extends Annotation> annotation)
throws Exception {
Reflections reflections = new Reflections(new ConfigurationBuilder()
.setUrls(ClasspathHelper.forJavaClassPath())
.setScanners(new MethodAnnotationsScanner()));
Set<Method> methods = reflections.getMethodsAnnotatedWith(annotation);

for (Method m : methods) {
// for simplicity, invokes methods as static without parameters
m.invoke(null);
}
}

您可以使用以下方式运行它:

runAllAnnotatedWith(mod.class);

注意:不使用 Reflections 也可以做到这一点,但代码会变得越来越脏。

这是完整的代码(将其全部粘贴到 RunClass.java 文件中):

import java.lang.annotation.Annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.lang.reflect.Method;
import java.util.Set;

import org.reflections.Reflections;
import org.reflections.scanners.MethodAnnotationsScanner;
import org.reflections.util.ClasspathHelper;
import org.reflections.util.ConfigurationBuilder;

public class RunClass {
public static void main(String args[]) throws Exception {
runAllAnnotatedWith(mod.class);
}

public static void runAllAnnotatedWith(Class<? extends Annotation> annotation) throws Exception {
Reflections reflections = new Reflections(new ConfigurationBuilder()
.setUrls(ClasspathHelper.forJavaClassPath()).setScanners(
new MethodAnnotationsScanner()));
Set<Method> methods = reflections.getMethodsAnnotatedWith(annotation);

for (Method m : methods) {
m.invoke(null); // for simplicity, invoking static methods without parameters
}
}

@mod(name = "me1")
public static void calledcs() {
System.out.println("called");
}

@mod(name = "me2")
public static void calledcs2() {
System.out.println("called2");
}
}

@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@interface mod {
String name() default "";
}

要运行它,您必须添加 Reflections JAR 到你的项目。 可以下载here .

如果您使用 Maven,您可以使用以下方式添加它:

<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.9.9-RC1</version>
</dependency>

关于java - 如何使用给定的注释运行所有方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16996033/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com