浅析Java中Apache BeanUtils和Spring BeanUtils的用法
# 前言
在我们实际项目开发过程中,我们经常需要将不同的两个对象实例进行属性复制,从而基于源对象的属性信息进行后续操作,而不改变源对象的属性信息,比如dto数据传输对象和数据对象do,我们需要将do对象进行属性复制到dto,但是对象格式又不一样,所以我们需要编写映射代码将对象中的属性值从一种类型转换成另一种类型。
# 对象拷贝
在具体介绍两种 beanutils 之前,先来补充一些基础知识。它们两种工具本质上就是对象拷贝工具,而对象拷贝又分为深拷贝和浅拷贝,下面进行详细解释。
# 什么是浅拷贝和深拷贝
在java中,除了 基本数据类型之外,还存在 类的实例对象这个引用数据类型,而一般使用 “=”号做赋值操作的时候,对于基本数据类型,实际上是拷贝的它的值,但是对于对象而言,其实赋值的只是这个对象的引用,将原对象的引用传递过去,他们实际还是指向的同一个对象。
而浅拷贝和深拷贝就是在这个基础上做的区分,如果在拷贝这个对象的时候,只对基本数据类型进行了拷贝,而对引用数据类型只是进行引用的传递,而没有真实的创建一个新的对象,则认为是浅拷贝。反之,在对引用数据类型进行拷贝的时候,创建了一个新的对象,并且复制其内的成员变量,则认为是深拷贝。
简单来说:
浅拷贝:对基本数据类型进行值传递,对引用数据类型进行引用传递般的拷贝,此为浅拷贝
深拷贝:对基本数据类型进行值传递,对引用数据类型,创建一个新的对象,并复制其内容,此为深拷贝。
# beanutils
前面简单讲了一下对象拷贝的一些知识,下面就来具体看下两种 beanutils 工具
# apache 的 beanutils
首先来看一个非常简单的beanutils的例子
publicclass personsource { private integer id; private string username; private string password; private integer age; // getters/setters omiited } publicclass persondest { private integer id; private string username; private integer age; // getters/setters omiited } publicclass testapachebeanutils { public static void main(string[] args) throws invocationtargetexception, illegalaccessexception { //下面只是用于单独测试 personsource personsource = new personsource(1, "pjmike", "12345", 21); persondest persondest = new persondest(); beanutils.copyproperties(persondest,personsource); system.out.println("persondest: "+persondest); } } persondest: persondest{id=1, username='pjmike', age=21}
从上面的例子可以看出,对象拷贝非常简单,beanutils最常用的方法就是:
//将源对象中的值拷贝到目标对象//将源对象中的值拷贝到目标对象 public static void copyproperties(object dest, object orig) throws illegalaccessexception, invocationtargetexception { beanutilsbean.getinstance().copyproperties(dest, orig); }
但是由于 apache下的beanutils对象拷贝性能太差,不建议使用,而且在阿里巴巴java开发规约插件上也明确指出:
ali-check | 避免用apache beanutils进行属性的copy。
commons-beantutils 对于对象拷贝加了很多的检验,包括类型的转换,甚至还会检验对象所属的类的可访问性,可谓相当复杂,这也造就了它的差劲的性能,具体实现代码如下:
public void copyproperties(final object dest, final object orig) throws illegalaccessexception, invocationtargetexception { // validate existence of the specified beans if (dest == null) { thrownew illegalargumentexception ("no destination bean specified"); } if (orig == null) { thrownew illegalargumentexception("no origin bean specified"); } if (log.isdebugenabled()) { log.debug("beanutils.copyproperties(" + dest + ", " + orig + ")"); } // copy the properties, converting as necessary if (orig instanceof dynabean) { final dynaproperty[] origdescriptors = ((dynabean) orig).getdynaclass().getdynaproperties(); for (dynaproperty origdescriptor : origdescriptors) { final string name = origdescriptor.getname(); // need to check isreadable() for wrapdynabean // (see jira issue# beanutils-61) if (getpropertyutils().isreadable(orig, name) && getpropertyutils().iswriteable(dest, name)) { final object value = ((dynabean) orig).get(name); copyproperty(dest, name, value); } } } elseif (orig instanceof map) { @suppresswarnings("unchecked") final // map properties are always of type <string, object> map<string, object> propmap = (map<string, object>) orig; for (final map.entry<string, object> entry : propmap.entryset()) { final string name = entry.getkey(); if (getpropertyutils().iswriteable(dest, name)) { copyproperty(dest, name, entry.getvalue()); } } } else/* if (orig is a standard javabean) */ { final propertydescriptor[] origdescriptors = getpropertyutils().getpropertydescriptors(orig); for (propertydescriptor origdescriptor : origdescriptors) { final string name = origdescriptor.getname(); if ("class".equals(name)) { continue; // no point in trying to set an object's class } if (getpropertyutils().isreadable(orig, name) && getpropertyutils().iswriteable(dest, name)) { try { final object value = getpropertyutils().getsimpleproperty(orig, name); copyproperty(dest, name, value); } catch (final nosuchmethodexception e) { // should not happen } } } } }
# spring 的 beanutils
使用spring的beanutils进行对象拷贝:
publicclass testspringbeanutils { public static void main(string[] args) throws invocationtargetexception, illegalaccessexception { //下面只是用于单独测试 personsource personsource = new personsource(1, "pjmike", "12345", 21); persondest persondest = new persondest(); beanutils.copyproperties(personsource,persondest); system.out.println("persondest: "+persondest); } }
spring下的beanutils也是使用 copyproperties方法进行拷贝,只不过它的实现方式非常简单,就是对两个对象中相同名字的属性进行简单的get/set,仅检查属性的可访问性。具体实现如下:
private static void copyproperties(object source, object target, @nullable class<?> editable, @nullable string... ignoreproperties) throws beansexception { assert.notnull(source, "source must not be null"); assert.notnull(target, "target must not be null"); class<?> actualeditable = target.getclass(); if (editable != null) { if (!editable.isinstance(target)) { throw new illegalargumentexception("target class [" + target.getclass().getname() + "] not assignable to editable class [" + editable.getname() + "]"); } actualeditable = editable; } propertydescriptor[] targetpds = getpropertydescriptors(actualeditable); list<string> ignorelist = (ignoreproperties != null ? arrays.aslist(ignoreproperties) : null); for (propertydescriptor targetpd : targetpds) { method writemethod = targetpd.getwritemethod(); if (writemethod != null && (ignorelist == null || !ignorelist.contains(targetpd.getname()))) { propertydescriptor sourcepd = getpropertydescriptor(source.getclass(), targetpd.getname()); if (sourcepd != null) { method readmethod = sourcepd.getreadmethod(); if (readmethod != null && classutils.isassignable(writemethod.getparametertypes()[0], readmethod.getreturntype())) { try { if (!modifier.ispublic(readmethod.getdeclaringclass().getmodifiers())) { readmethod.setaccessible(true); } object value = readmethod.invoke(source); if (!modifier.ispublic(writemethod.getdeclaringclass().getmodifiers())) { writemethod.setaccessible(true); } writemethod.invoke(target, value); } catch (throwable ex) { throw new fatalbeanexception( "could not copy property '" + targetpd.getname() + "' from source to target", ex); } } } } } }
可以看到,成员变量赋值是基于目标对象的成员列表,并且会跳过ignore的以及在源对象中不存在,所以这个方法是安全的,不会因为两个对象之间的结构差异导致错误,但是必须保证同名的两个成员变量类型相同
# 小结
以上简要的分析两种beanutils,因为apache下的beanutils性能较差,不建议使用,可以使用 spring的beanutils ,或者使用其他拷贝框架,比如:dozer、modelmapper等等
到此这篇关于浅析java中apache beanutils和spring beanutils的用法的文章就介绍到这了,更多相关apache beanutils和spring beanutils内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!