Create the instance in Java from a json buffer
I have a JSON (stored in a string, file etc) and I want to read it and create the java instance. For example for this class @Data public class Rate { private String currency; private BigDecimal buyRate; private BigDecimal midRate;…