hutool copyproperties 只复制部分属性怎么做
时间: 2023-04-02 12:01:54 浏览: 599
用序列化实现ListT 实例的深复制(推荐)
您可以使用 BeanUtil.copyProperties(source, target, ignoreProperties) 方法来复制部分属性,其中 ignoreProperties 参数可以传入一个字符串数组,指定不需要复制的属性名。例如:
BeanUtil.copyProperties(source, target, "id", "createTime");
这样就可以复制除了 id 和 createTime 以外的所有属性了。
阅读全文