I would like to knows if someone can show me the right way to generate Java classes from a json File ?
for example if we have the following json file :
{
"Personne": {
"Name": "Job Moun ",
"Phone": "062352665566"
}
}
I want to generate Java code automatically, something like that :
public class Personne{
private String Name;
private String phone;
....
}