Apache的对象复制详解

BeanUtils.copyProperties 和 PropertyUtils.copyProperties 

两个工具类都是对两个bean之前存在name相同的属性进行处理,无论是源bean或者目标bean多出的属性均不处理。

其原理是通过JDK自带的反射机制动态的去get,set,从而去转换我们的类。

但是要注意一点他们所支持的数据类型,还有一个就是假如一个类里面又写了一个类,一般叫做内部类,像这种类进行转换的时候,是不会成功的。

两者最大的区别是: 
1.BeanUtils.copyProperties会进行类型转换,而PropertyUtils.copyProperties不会。 
既然进行了类型转换,那BeanUtils.copyProperties的速度比不上PropertyUtils.copyProperties。 
因此,PropertyUtils.copyProperties应用的范围稍为窄一点,它只对名字和类型都一样的属性进行copy,如果名字一样但类型不一样,它会报错。

2.对null的处理:PropertyUtils支持为null的场景;BeanUtils对部分属性不支持null的情况,具体为下:

1)、date类型不支持;
2)、Boolean、Ineger、Long、Short、Float、Double等不支持: 转为false、0;
3)、string:支持,保持null;

使用BeanUtils有几个要注意的地方: 
1.对于类型为Boolean/Short/Integer/Float/Double的属性,它会转换为false、0: 

public class User { 
 
    private Integer intVal; 
     
    private Double doubleVal; 
     
    private Short shortVal; 
     
    private Long longVal; 
     
    private Float floatVal; 
     
    private Byte byteVal; 
     
    private Boolean booleanVal; 

 
User src = new User(); 
User dest = new User(); 
BeanUtils.copyProperties(dest, src); 
System.out.println(src); 
System.out.println(dest); 
 
//输出结果:     
User [intVal=null, doubleVal=null, shortVal=null, longVal=null, floatVal=null, byteVal=null, booleanVal=null] 
User [intVal=0, doubleVal=0.0, shortVal=0, longVal=0, floatVal=0.0, byteVal=0, booleanVal=false]

解释说是因为这几个类型都有对应的基本类型,在进行类型转换时,有可能遇到类似Integer -> int的转换,此时显然不能对int类型的属性赋值为null,因此统一转换为0。 

如何让它不要转为0呢?可以这样:

1 import org.apache.commons.beanutils.converters.IntegerConverter; 
2 
3 IntegerConverter converter = new IntegerConverter(null);    //默认为null,而不是0 
4 BeanUtilsBean beanUtilsBean = new BeanUtilsBean(); 
5 beanUtilsBean.getConvertUtils().register(converter, Integer.class);

2.对于java.util.Date/BigDecimal/java.sql.Date/java.sql.Timestamp/java.sql.Time这几个类,如果值为null,则在copy时会抛异常,需要使用对应的Conveter: 

public class User2 { 
 
    private java.util.Date javaUtilDateVal; 
     
    private java.sql.Date javaSqlDateVal; 
     
    private java.sql.Timestamp javaSqlTimeStampVal; 
     
    private BigDecimal bigDecimalVal; 
 
    private java.sql.Time javaSqlTime; 
 

 
User2 src = new User2(); 
User2 dest = new User2(); 
 
BeanUtilsBean beanUtilsBean = new BeanUtilsBean(); 
 
//如果没有下面几行,则在转换null时会抛异常,例如:org.apache.commons.beanutils.ConversionException: No value specified for 'BigDecimal' 
//在org.apache.commons.beanutils.converters这个包下面有很多的Converter,可以按需要使用 
beanUtilsBean.getConvertUtils().register(new BigDecimalConverter(null), BigDecimal.class); 
beanUtilsBean.getConvertUtils().register(new DateConverter(null), java.util.Date.class); 
 
beanUtilsBean.getConvertUtils().register(new SqlTimestampConverter(null), java.sql.Timestamp.class); 
beanUtilsBean.getConvertUtils().register(new SqlDateConverter(null), java.sql.Date.class); 
beanUtilsBean.getConvertUtils().register(new SqlTimeConverter(null), java.sql.Time.class); 
 
beanUtilsBean.copyProperties(dest, src); 
System.out.println(src); 
System.out.println(dest);

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/aea86a8d29b9d839e894d3452f86d7d7.html