Java寻找具有特定注释的方法及其注释元素
假设我有这个注释类
@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,并调用它?
谢谢
Suppose I have this annotation class
@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(){ ... }
}
So is there a way to look into an object, "seek" out the method with the @MethodXY annotation, where its element x = 3, y = 2, and invoke it?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是一个方法,它返回带有特定注释的方法:
它可以根据您的特定需求轻松修改。请注意,提供的方法遍历类层次结构以查找具有所需注释的方法。
以下是满足您特定需求的方法:
要调用找到的方法,请参阅 教程。这里的潜在困难之一是方法参数的数量,这些参数在找到的方法之间可能有所不同,因此需要一些额外的处理。
Here is a method, which returns methods with specific annotations:
It can be easily modified to your specific needs. Pls note that the provided method traverses class hierarchy in order to find methods with required annotations.
Here is a method for your specific needs:
For invocation of the found method(s) pls refer a tutorial. One of the potential difficulties here is the number of method arguments, which could vary between found methods and thus requiring some additional processing.
尝试这个代码示例:
try this code sample: