I have JSON string like below, and want to convert into Java object using jackson API.
[
{
"Users": {
"id": "1",
"userId": "1424",
"Firstname": "lms",
}
},
{
"Users": {
"id": "2",
"userId": "4527",
"Firstname": "Matthew",
}
}
]
Can you please help me out.