mars-men / GsonFormatPlus

GsonFormatPlus
Apache License 2.0
143 stars 34 forks source link

Json conversion problem #30

Open renjie-rm opened 3 years ago

renjie-rm commented 3 years ago

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" } }