我挺喜欢用工具类的,方便BeanUtils.copyProperties,如果要不复制某些属性也是很方便的,加第三个参数就可以,记录学习一下了。
1.复制属性忽略一个
BeanUtils.copyProperties(layoutPlanItemsParam,layoutPlanItems, "id");
2.复制属性忽略多个
BeanUtils.copyProperties(layoutPlanItemsParam,layoutPlanItems, new String[] { "id", "createDate", "modifyDate" });