赞
踩
业务需求: 需要将一个List< Employee > 转成 List< EmployeeModel >
其中 Employee 与 EmployeeModel 对应属性名称一致
方法一:
使用Spring提供的工具,BeanUtils.copyProperties();
进行对象的属性拷贝,然后循环遍历。
比较简单,也比较麻烦,这里不推荐。
BeanUtils.copyProperties();
可以完成 Employee ——> EmployeeModel
方法二:
使用阿里巴巴的开源工具fastjson进行转换,网上有人实测效率比方法一高
List<Employee> list = employeeService.list();
// 使用阿里巴巴的fastjson进行集合中对象的模型转换
List<EmployeeModel> employeeModels = JSON.parseArray(JSON.toJSONString(list),
EmployeeModel.class);
JSON.toJSONString(Object object)
:将一个对象转成json字符串
JSON.parseArray(String text, Class<T> clazz)
:将json字符串类型(class)转变
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。