I have some JSON as below
{
"FName": "Test",
"LName": "Test"
}
When i use json2pojo maven plugin(0.4.37), the POJOs are created with the proper Java naming conventions(like fName,lName
). Is there a way to override this and create the POJOs with the same names (like FName, LName
).