有没有办法在 groovy 中执行以下操作:
class Person{
def name, surname
}
public void aMethod(anoherBean){
def bean = retrieveMyBean()
p.properties = anoherBean.properties
}
属性属性是最终的,还有其他方法可以做到这一点吗?
有没有办法在 groovy 中执行以下操作:
class Person{
def name, surname
}
public void aMethod(anoherBean){
def bean = retrieveMyBean()
p.properties = anoherBean.properties
}
属性属性是最终的,还有其他方法可以做到这一点吗?
如果您没有任何特殊原因,则只需使用命名参数
def p = new Person(name: 'John', surname: 'Lennon')
问题更新后
static copyProperties(from, to) {
from.properties.each { key, value ->
if (to.hasProperty(key) && !(key in ['class', 'metaClass']))
to[key] = value
}
}
properties
是虚拟财产;你必须打电话给个别的二传手。试试这个:
def values = [name: 'John', surname: 'Lennon']
for( def entry : values.entries() ) {
p.setProperty( entry.getKey(), entry.getValue() );
}
或者,使用 MOP:
Object.class.putAllProperties = { values ->
for( def entry : values.entries() ) {
p.setProperty( entry.getKey(), entry.getValue() );
}
}
Person p = new Person();
p.putAllProperties [name: 'John', surname: 'Lennon']
[编辑]要实现您想要的,您必须遍历属性。这篇博客文章描述了如何做到这一点:
def copyProperties(def source, def target){
target.metaClass.properties.each{
if (source.metaClass.hasProperty(source, it.name) && it.name != 'metaClass' && it.name != 'class')
it.setProperty(target, source.metaClass.getProperty(source, it.name))
}
}