I need to parse relatively complex JSON with Jackson library. Could you guys advice what Java class structure should I have and what Jackson approach to use to parse the following JSON object.
It is like this:
{
"firstField": "Something One",
"secondField": "Something Two",
"thirdField": [
{
"thirdField_one": "Something Four",
"thirdField_two": "Something Five"
},
{
"thirdField_one": "Something Six",
"thirdField_two": "Something Seven"
}
],
"fifthField": [
{
"fifthField_one": "Something… ",
"fifthField_two": "Something...",
"fifthField_three": 12345
},
{
"fifthField_one": "Something",
"fifthField_two": "Something",
"fifthField_three": 12345
}
]
}
I’m more versed with Gson, but I think this should work.
See StaxMan’s note below: