Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否存在直接从 json 对象填充 java 对象的属性的东西?类似于:TotoObject toto = fill(JsonObject);
我目前正在使用 getter 和 setter 执行此操作,但它很长,当我有一个具有很多属性的对象时,它使我的代码看起来像废话。
谢谢你。
这是一个类似的问题,其答案也建议使用 GSON。答案中也有一个很好的代码片段:How do I populate List from JSON response