1, Paste in the json content, the class name and package name of the Javabean can automatically generate the JavaBean code, and you can directly package and download the source code
2, support to generate Javabean entity classes from Json strings in any complex/simple format
3, provide Json format error prompts, will not format Json strings that do not conform to the specification, and ensure the accuracy of Javabean entity classes
4. If your Json field contains system keywords and you cannot modify the field name at will, you can refer to the annotation in Gson to create an alias:
@serializableName
fixes this issue. The following is a before and after comparison:
private List
< Default >default;
@SerializedName("default")
private List
< Default >mdefault;
Popular tools: