在运行时获取属性类型



我有一个Groovy类,如

class User {
    List<Foo> someFoos = new ArrayList<Foo>()
    List<Bar> someBars = new ArrayList<Bar>()    
}

我可以在运行时使用

遍历这些属性
def user = new User()
List<MetaProperty> setProperties = user.metaClass.properties.findAll {MetaProperty property ->
    property.name.startsWith('some')
}

如果我检查这些属性的类型Set返回

setProperties.each {MetaProperty setProperty -> 
    assert setProperty.type == Set    
}

是否有任何方法在运行时,我可以得到这些属性的泛型类型参数(FooBar) ?

我强烈怀疑我不能,因为类型擦除,但如果有人能证实我的怀疑,我将不胜感激。

可以。这些是字段定义,它们在运行时保留它们的类型定义。我将给您java代码,您也可以在groovy中使用它(我不知道groovy特有的解决方案)

Field[] fields = User.class.getDeclaredFields();
for (Field field : fields) {
    ParameterizedType pt = (ParameterizedType) field.getGenericType();
    Type concreteType = pt.getActualTypeArguments()[0];
}

相关内容

  • 没有找到相关文章