I am using jackson to convert json to java object, but the problem I am facing is that say the json format is:
{
employeeId: 123
name: akash
........some other attributes
}
and the java object i am converting it to, has attributes:
id:
name:
.....some other attributes
Now I want to convert that json into the object, you can see that all the attributes have same name, except for employeeid/id. Considering that I can't change the json nor the java object. How can I go about it to do the function.