GsonFormatPlus
GsonFormatPlus copied to clipboard
Json conversion problem
A object contains A collection of B objects,
public class A { private List<B> b; public static class B { private String name; } }
Convert to JSON result:
{ "b": { "name": "demoData" } }