1. Paste json content, Javabean class name and package name can automatically generate JavaBean code, and can directly package and download source code
2. Support generating Javabean entity class from Json string of any complex/simple format
3. Provide Json format error prompt, will not format non-compliant Json string, ensure the accuracy of Javabean entity class
4. If your Json field contains system keywords and you cannot modify the field name at will, you can refer to the use of Gson annotation to give an alias: @serializableName
to solve this problem. The following is a comparison before and after use:
private List< Default > default;
@SerializedName("default")
private List< Default > mdefault;