问题描述
我对代理类不是很熟悉,也不知道this("annotation")如何成为代理对象.我可以从代理对象检索注释吗?
I'm not really familiar with proxy class and I have no idea how does this("annotation") became a proxy object. Can I retrieve annotations from Proxy object?
public static void test(Annotation annotation) {
System.out.println("ValidBoolean annotation len:" + ValidBoolean.class.getAnnotations().length);
System.out.println(annotation.getClass().getName() + ":" + annotation.getClass().getAnnotations().length);
if (annotation instanceof ValidBoolean) {
ValidBoolean validBoolean = (ValidBoolean) annotation;
System.out.println("[BOOLEAN]" + validBoolean.getClass().getName() + ":" + validBoolean.getClass().getAnnotations().length);
}
}
结果是:
ValidBoolean annotation len:3
com.sun.proxy.$Proxy28:0
[BOOLEAN]com.sun.proxy.$Proxy28:0
推荐答案
我仍然不太了解这种代理机制.但是我可以通过annotation.annotationType()
而不是annotation.getClass()
获得Annotation实类,因为Annotation只是一个接口,因此annotation.getClass()
仅会生成Java代理对象!
I'm still not really understanding this Proxy mechanism. But I can get Annotation real class by annotation.annotationType()
rather than annotation.getClass()
, because annotation is just a interface so annotation.getClass()
will only produce a Java Proxy object!
似乎,代理对象不继承注释,这是我学到的最重要的东西.
And it seems, Proxy object doesn't inherit Annotations, this is the most important thing i've learned.
这篇关于Java-如何从Proxy类获取注释?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!