Loading

java 对象copy 单个copy / list copy

 

//单个对象复制,使用org.springframework.beans.BeanUtils

BeanUtils.copyProperties(oldVO, newVO);

 

//list
List<NewListVO> newList = JSON.parseArray(JSON.toJSONString(list), NewListVO.class);

 

posted @ 2021-11-22 16:31  路闻man  阅读(133)  评论(0编辑  收藏  举报