Json generate Java entity class tools, Json generate JavaBean code

1, paste the contents of the json , Javabean class name , package name can automatically generate JavaBean code , and can be directly packaged to download the source code

2, supports any complex/simple format Json string to generate Javabean entity class

3, to provide Json format error , will not format the Json string does not meet the specifications , to ensure the accuracy of the Javabean entity classes

4, if your Json field contains system keywords , and can not modify the field name , you can refer to the use of Gson in the annotations to start an individual name :@serializableName To solve this problem. The following is the use of before and after the comparison:

private List default;

@SerializedName("default")

private List mdefault;

Access logs: