Json Generates Java Entity Class Tool, Json Generates JavaBean Code

1. Paste the json content, the Javabean class name and package name can automatically generate JavaBean code, and can directly package and download the source code

2. Support generating Javabean entity classes from any complex/simple format JSON strings

3. Provides a Json format error prompt, does not format non-compliant Json strings, ensuring the accuracy of Javabean entity classes

4. If your Json field contains system keywords and cannot modify the field name at will, you can refer to the annotations in Gson for individual aliases:@serializableNameSolve this problem. Here is a before and after comparison:

Private List< Default > Default;

@SerializedName ("default")

Private List< Default > MDefault;

Your footsteps: