LinkedHashMap 到 Pojo
我有一个变量,它是链接的哈希图。就像:
"message": "something"
"code": "0"
我有一个 pojo:
String message;
Integer code;
//getters and setters
是否有任何库可以将 linkedhasmap 转换为 pojo?
I have a variable that is a linked hash map. Its like:
"message": "something"
"code": "0"
and I have a pojo:
String message;
Integer code;
//getters and setters
Is there any library that converts a linkedhasmap into a pojo?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Apache Commons BeanUtils 有一个
populate()
方法 将映射值移动到 bean 中。Apache Commons BeanUtils has a
populate()
method that moves map values into a bean.只需迭代映射并创建 POJO 对象列表即可。
Just iterate map and create a list of POJO object.