I need to have Java class to accommodate below requirement and it should be compatible for Jackson's parsing using Object Mapper.
The Json is in below format :
[
{
"name" : "Snehal",
"property1" : "value11",
"property2" : "value12",
"property3" : "value13",
},
{
"name" : "Masne",
"property1" : "value21",
"property2" : "value22",
"property3" : "value23",
},
]
In above Json, the no. of properties are not fixed, meaning there can be, say, property4, 5, 6, etc
The corresponding Java class could be thought of as below :
Class MyClass
{
String name;
List<String> properties;
// getters, setters, etc
}
But this wont solve the purpose since, in this case, Json will generated something like of below format:
[
{
"name" : "Snehal",
[
{"property" : "value1" },
{"property" : "value1" },
{"property" : "value1" }
]
},
{
.... []
}
]
How do I implement the Java class to achieve the data in specifeid Json format ?
You can use @JsonAnyGetter/@JsonAnySetter annotations to mark that your class has 'extra' properties in addition to the declared fields.
Here is an example:
Output: