BeanUtils.copyProperties不复制id
时间: 2024-03-29 14:33:08 浏览: 62
beanUtils , CopyProperty
在使用BeanUtils.copyProperties进行对象属性复制时,如果不想复制某些字段,可以使用自定义的属性过滤器来实现。以下是一个示例代码[^2]:
```java
import org.apache.commons.beanutils.BeanUtils;
import org.apache.commons.beanutils.PropertyUtils;
import org.apache.commons.beanutils.SuppressPropertiesBeanIntrospector;
import java.lang.reflect.InvocationTargetException;
public class BeanUtilsExample {
public static void main(String[] args) {
SourceBean source = new SourceBean();
source.setId(1);
source.setName("John");
source.setAge(25);
TargetBean target = new TargetBean();
try {
// 设置属性过滤器,不复制id字段
PropertyUtils.addBeanIntrospector(new SuppressPropertiesBeanIntrospector(new String[]{"id"}));
// 复制属性
BeanUtils.copyProperties(target, source);
System.out.println(target.getName()); // 输出:John
System.out.println(target.getAge()); // 输出:25
System.out.println(target.getId()); // 输出:0,id字段未复制
} catch (IllegalAccessException | InvocationTargetException | NoSuchMethodException e) {
e.printStackTrace();
}
}
}
class SourceBean {
private int id;
private String name;
private int age;
// 省略getter和setter方法
}
class TargetBean {
private int id;
private String name;
private int age;
// 省略getter和setter方法
}
```
在上述代码中,我们使用了`SuppressPropertiesBeanIntrospector`来设置属性过滤器,将不需要复制的字段名传递给构造函数。在复制属性时,BeanUtils会根据属性过滤器的设置来决定是否复制该字段。
阅读全文