在 Groovy 中生成 JSON 对象



由于某种原因,我无法使用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 对象的简单方法?

我倾向于发现JsonOutput更容易用于已经构建的数据。你的看起来像这样:

groovy.json.JsonOutput.toJson(
[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"
]
]
]
]
]]
)
  1. 如果你从Groovy对象创建一个JSON,那么你可以使用;Json输出

  2. 如果你有多个值要传递和创建一个 JSON 对象,那么你可以使用;Json生成器

  3. 或者你可以使用 JsonBuilder 或 StreamingJsonBuilder

查看时髦的文档

相关内容

  • 没有找到相关文章

最新更新