Groovy:是否可以在代理对象中调整Annotations?

时间:2015-11-02 17:50:45

标签: groovy annotations

说我有一个带注释的类

@SomeAnnotation
class Foo {}

在我的代码中,我有一个代理对象,通过

def foo = new Foo()
def result = foo.asType(barType)

其中barType是一个或另一个接口。 result现在是一个动态生成的Groovy代理类。

是否有可能搞乱该类,以便在Foo上显示result.getClass().getAnnotations() - 注释?

0 个答案:

没有答案