标签: groovy annotations
说我有一个带注释的类
@SomeAnnotation class Foo {}
在我的代码中,我有一个代理对象,通过
def foo = new Foo() def result = foo.asType(barType)
其中barType是一个或另一个接口。 result现在是一个动态生成的Groovy代理类。
barType
result
是否有可能搞乱该类,以便在Foo上显示result.getClass().getAnnotations() - 注释?
Foo
result.getClass().getAnnotations()