由于某种原因,我无法使用 JSONBuilder 在 Groovy 中创建 JSON 对象
这是我所拥有的,但它又回来了{}:
import groovy.json.JsonBuilder
JsonBuilder builder = new JsonBuilder()
builder {
name "Name"
description "Description"
type "schedule type"
schedule {
recurrenceType "one time"
start "${startDateTime}"
end "${endDateTime}"
}
scope {
entities ["${applicationId}"]
matches [
{
tags [
{
key "key name"
context "some context"
}
]
}
]
}
}
有谁知道用嵌套元素创建 JSON 对象的简单方法?