gpt4 book ai didi

Groovy 配置文件中的继承

转载 作者:行者123 更新时间:2023-12-04 21:36:19 29 4
gpt4 key购买 nike

我需要定义和阅读 ConfigSlurper Groovy 配置文件中的几个属性,它们将共享一些公共(public)字段并仅添加一个特定字段。像这样的东西:

config {
// this is something like abstract property
common {
field1 = 'value1'
field2 = 'value2'
}

property1 {
// include fields from common here
customField = 'prop1value'
}

property2 {
// include fields from common here
customField = 'prop2value'
}
}

我很好奇是否有可能以一种很好的方式实现这一目标。由于我对 Groovy 不是很熟悉,所以我目前的解决方案并不理想,我会说:
config {
common {
field1 = 'value1'
field2 = 'value2'
}

property1 = common.clone()
property1 {
customField = 'value'
}

property2 = common.clone()
property2 {
customField = 'value'
}
}
config.remove('common')

感谢您的任何建议

最佳答案

你可以做:

config {
// A common map of values
def common = [
field1: 'value1',
field2: 'value2'
] as ConfigObject

property1 {
customField = 'value'
}

property2 {
customField = 'value'
}

property1.merge(common)
property2.merge(common)
}

你说的是那种东西吗?

关于Groovy 配置文件中的继承,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36797813/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com