JSON 作为泽西岛的树
我不太喜欢为我正在开发的 API 维护大量 POJO。我认为(至少在某些情况下),最好将传入的 JSON 数据作为某种树使用。
也许是这样的: data.getArray('people').getIndex(0).getLong('personId');
I'm not really a big fan of maintaining a number of POJOs for an API that I'm working on. I'm thinking that (in some cases at least), it would be preferable to consume incoming JSON data as a tree of sorts.
Something like this, maybe: data.getArray('people').getIndex(0).getLong('personId');
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 jettison 提供的低级 JSON 支持 - 请参阅 http:// /jersey.java.net/nonav/documentation/latest/json.html#d4e1132
You can use the low-level JSON support provided by jettison - see http://jersey.java.net/nonav/documentation/latest/json.html#d4e1132