Я хочу создать формат Json, как показано ниже, с помощью SpringBoot.
[
{
"name": "foo",
"albums": [
{
"title": "album_one",
"artist": "foo",
"ntracks": 12
},
{
"title": "album_two",
"artist": "foo",
"ntracks": 15
}
]
},
{
"name": "bar",
"albums": [
{
"title": "foo walks into a bar",
"artist": "bar",
"ntracks": 12
},
{
"title": "album_song",
"artist": "bar",
"ntracks": 17
}
]
}]
Пожалуйста, помогите мне и обратитесь к весеннему загрузочному приложению, которое помогает создать формат Json как похожее.