码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2018-03-18 13:08:46      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:original   framework   static   文件   string   lsb   拷贝   传递   spring   

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

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

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

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

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

public static void copyProperties(Object dest, Object orig)//dest目标文件,original源文件
        throws IllegalAccessException, InvocationTargetException
    {
        BeanUtilsBean.getInstance().copyProperties(dest, orig);
    }

 

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

标签:original   framework   static   文件   string   lsb   拷贝   传递   spring   

原文地址:https://www.cnblogs.com/leilong/p/8594961.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!