JSON to Java POJO converter from instantwebtools.net. You can easily convert any given JSON into a Java-based POJO class using this converter. Additionally, this converter supports for Lombok project as well.
Here we are supporting to generate java POJO with Lombok annotations to create clean code. We are supporting the following Lombok annotations with imports.
Additionally, you can create a traditional java POJO class without getters and setters using this converter. Just disable the Lombok support tick box and try. It will create a java class without Lombok and adding all the getters and setters into the generated class structure.
eg: {"actualBalance": 20003.44} This will convert to private Double actualBalance;
eg: {"authId": 2} This will convert to private Integer authId;