关于BeanUtils.copyProperties() 用法及区别

关于BeanUtils.copyProperties() 用法及区别

这两个类在不同的包下面,而这两个类的copyProperties()方法里面传递的参数赋值是相反的。

org.apache.commons.beanutils.BeanUtils#copyProperties方法会进行类型转换,默认情况下会将Ineger、Boolean、Long等基本类型包装类为null时的值复制后转换成0或者false,有时这个可能会引起不必要的麻烦。
而org.springframework.beans.BeanUtils.copyProperties(bookDto, book);则不会!

例如:
a,b为对象
BeanUtils.copyProperties(a, b);


BeanUtils是org.springframework.beans.BeanUtils, a拷贝到b

1
2
3
4
5
public  static  void  copyProperties(Object source, Object target) //source 源文件,target 目标文件
         throws  BeansException
     {
         copyProperties(source, target,  null , (String[]) null );
     }

  


BeanUtils是org.apache.commons.beanutils.BeanUtils,b拷贝到a

1
2
3
4
5
public  static  void  copyProperties(Object dest, Object orig) //dest(英译:“蒸馏”,可理解为空白文件,目标文件),original原始的,源文件
         throws  IllegalAccessException, InvocationTargetException
     {
         BeanUtilsBean.getInstance().copyProperties(dest, orig);
     }

你可能感兴趣的:(java)