使用场景
当我们返回给前端所需的对象数据时,大多数情况可以直接使用 StructMap 映射实现自动转换,但碰到对象中的某些字段需要从 Integer 类型转换成对应枚举的时候,在 StructMap 中就需要单独对这些字段添加转换注解,实现较为麻烦,故整合出了一个通用转换工具类。
ConverUtils 工具类实现
public class ConvertUtils {
// 普通对象转换
public static <T> T toObject(Object o, Class<T> tClass) {
return JacksonUtils.from(JacksonUtils.to(o), tClass);
}
// List 对象转换
public static <T> List<T> toListOject(List list, Class<T> tClass) {
if (CollectionUtil.isEmpty(list)) {
return Collections.emptyList();
}
List<T> result = new ArrayList<>();
for (int i = 0; i < list.size(); i++) {
result.add(JacksonUtils.from(JacksonUtils.to(list.get(i)), tClass));
}
return result;
}
// 此处使用的 com.github.pagehelper 分页 分页对象转换
public static <T> PageResult<T> toPageOject(PageInfo pageInfo, Class<T> clazz) {
if (pageInfo == null || CollectionUtil.isEmpty(pageInfo.getList())) {
return new PageResult<T>(0, 20, 1, Collections.emptyList());
}
List<T> from = toListOject(pageInfo.getList(), clazz);
return new PageResult<T>(pageInfo.getTotal(), pageInfo.getPageSize(), pageInfo.getPageNum(), from);
}
}
调用方式举例
public class EnterprisePageVO {
@ApiModelProperty(value = \"学生id\")
private Long id;
@ApiModelProperty(value = \"姓名\")
private String name;
@ApiModelProperty(value = \"性别\")
private SexEnum importOrgId;
@ApiModelProperty(value = \"考试科目\")
private List<SubjectEnum> importOrgId;
}
StudentVO student = ConvertUtils.toObject(studentDTO, StudentVO.class);
本文来自博客园,作者:这个杀手冷死了,转载请注明原文链接:https://www.cnblogs.com/pandacode/p/16171437.html
来源:https://www.cnblogs.com/pandacode/p/16171437.html
本站部分图文来源于网络,如有侵权请联系删除。