我正在尝试创建一个配置,看起来像这样:
nods = [
nod {
test = 1
},
nod {
test = 2
}
]
,然后使用configSlurper读取它,但"node"对象在读取后似乎为空。
下面是我的代码:final ConfigObject data = new ConfigSlurper().parse(new File("config.dat").toURI().toURL())
println data.nods
和输出:
[null, null]
我做错了什么?
谢谢!
我想我是这样解决的:
config {
nods = [
['name':'nod1', 'test':true],
['name':'nod2', 'test':flase]
]
}
然后像这样使用
config = new ConfigSlurper().parse(new File("config.groovy").text)
for( i in 0..config.config.nods.size()-1)
println config.config.nods[i].test
希望这对其他人有帮助!!
在使用ConfigSlurper时必须非常小心。
例如,您的解决方案实际上将产生以下输出:
true
[:]
如果你仔细看,你会发现在第二个数组值flase上有一个错字,而不是false
:
def configObj = new ConfigSlurper().parse("config { nods=[[test:true],[test:false]] }")
configObj.config.nods.each { println it.test }
应该产生正确的结果:
true
false
我尝试用ConfigSlurper解析如下:
config {sha=[{from = 123;to = 234},{from = 234;to = 567}]}
数组"sha"与预期相差甚远。为了获得"sha"作为ConfigObjects数组,我使用了一个帮助器:
class ClosureScript extends Script {
Closure closure
def run() {
closure.resolveStrategy = Closure.DELEGATE_FIRST
closure.delegate = this
closure.call()
}
}
def item(closure) {
def eng = new ConfigSlurper()
def script = new ClosureScript(closure: closure)
eng.parse(script)
}
这样我就得到了一个ConfigObjects数组:
void testSha() {
def config = {sha=[item {from = 123;to = 234}, item {from = 234;to = 567}]}
def xx = item(config)
assertEquals(123, xx.sha[0].from)
}