Json to Java Entity Class Tool, Json to JavaBean Code Generation

1, Paste the json content, Javabean's class name, package name to automatically generate JavaBean code, and you can directly download the source code package

2, Supports generating Javabean entity classes from any complex/simple format Json strings

3, Provides Json format error prompts, will not format non-standard Json strings, ensuring the accuracy of Javabean entity classes

4, If your Json field contains system keywords, and you can't modify the field name arbitrarily, you can refer to the alias annotation in Gson: @serializableName to solve this problem. Here is the comparison before and after use:

private List< Default > default;

@SerializedName("default")

private List< Default > mdefault;

Your footprint: