当前位置:   article > 正文

Apache-BeanUtils VS SpringBean-Utils

Apache-BeanUtils VS SpringBean-Utils

目录

一、前言

二、对象拷贝

三、什么是浅拷贝和深拷贝

四、BeanUtils

1. Apache 的 BeanUtils

2. Spring 的 BeanUtils

五、性能比较

六、推荐使用

七、深拷贝需求

1. SerializationUtils.clone()

2.SerializableFunction+Iterables.transform()


一、前言

在我们实际项目开发过程中,我们经常需要将不同的两个对象实例进行属性复制,从而基于源对象的属性信息进行后续操作,而不改变源对象的属性信息,比如DTO数据传输对象和数据对象DO,我们需要将DO对象进行属性复制到DTO,但是对象格式又不一样,所以我们需要编写映射代码将对象中的属性值从一种类型转换成另一种类型。

二、对象拷贝

在具体介绍两种 BeanUtils 之前,先来补充一些基础知识。它们两种工具本质上就是对象拷贝工具,而对象拷贝又分为深拷贝和浅拷贝,下面进行详细解释。

三、什么是浅拷贝和深拷贝

在Java中,除了 基本数据类型之外,还存在 类的实例对象这个引用数据类型,而一般使用 “=”号做赋值操作的时候,对于基本数据类型,实际上是拷贝的它的值,但是对于对象而言,其实赋值的只是这个对象的引用,将原对象的引用传递过去,他们实际还是指向的同一个对象。

而浅拷贝和深拷贝就是在这个基础上做的区分。

  • 如果在拷贝这个对象的时候,只对基本数据类型进行了拷贝,而对引用数据类型只是进行引用的传递,而没有真实的创建一个新的对象,则认为是浅拷贝

  • 反之,在对引用数据类型进行拷贝的时候,创建了一个新的对象,并且复制其内的成员变量,则认为是深拷贝

简单来说:

  • 浅拷贝:浅拷贝只复制了对象的引用,使得新旧对象指向同一块内存区域。

  • 深拷贝: 对深拷贝则复制了对象的所有数据,包括引用类型的数据,创建了完全独立的新对象。

四、BeanUtils

前面简单讲了一下对象拷贝的一些知识,下面就来具体看下两种 BeanUtils 工具

1. Apache 的 BeanUtils

Apache BeanUtils 是Apache Commons库的一部分,它提供了一系列工具方法来简化JavaBean的操作,包括属性读取、设置以及属性拷贝。当使用BeanUtils.copyProperties()方法时,它执行的是浅拷贝,即对于引用类型的属性,拷贝的是引用本身,而不是引用的对象。这意味着如果源对象和目标对象有相同的引用类型属性,它们会指向同一个对象实例。

首先来看一个非常简单的BeanUtils的例子

  1. public class PersonSource {
  2.    private Integer id;
  3.    private String username;
  4.    private String password;
  5.    private Integer age;
  6.    // getters/setters omiited
  7. }
  8. public class PersonDest {
  9.    private Integer id;
  10.    private String username;
  11.    private Integer age;
  12.    // getters/setters omiited
  13. }
  14. public class TestApacheBeanUtils {
  15.    public static void main(String[] args) throws InvocationTargetException, IllegalAccessException {
  16.       //下面只是用于单独测试
  17.        PersonSource personSource = new PersonSource(1, "pjmike", "12345", 21);
  18.        PersonDest personDest = new PersonDest();
  19.        BeanUtils.copyProperties(personDest,personSource);
  20.        System.out.println("persondest: "+personDest);
  21.   }
  22. }
  23. persondest: PersonDest{id=1, username='pjmike', age=21}

从上面的例子可以看出,对象拷贝非常简单,BeanUtils最常用的方法就是:

  1. //将源对象中的值拷贝到目标对象
  2. public static void copyProperties(Object dest, Object orig) throws IllegalAccessException, InvocationTargetException {
  3.    BeanUtilsBean.getInstance().copyProperties(dest, orig);
  4. }

默认情况下,使用org.apache.commons.beanutils.BeanUtils对复杂对象的复制是引用,这是一种浅拷贝

但是由于 Apache下的BeanUtils对象拷贝性能太差,不建议使用,而且在阿里巴巴Java开发规约插件上也明确指出:

Ali-Check | 避免用Apache Beanutils进行属性的copy。

commons-beantutils 对于对象拷贝加了很多的检验,包括类型的转换,甚至还会检验对象所属的类的可访问性,可谓相当复杂,这也造就了它的差劲的性能,具体实现代码如下:

  1. /**
  2. * 将一个JavaBean的所有属性复制到另一个JavaBean。
  3. * 此方法将从`orig`对象复制属性到`dest`对象,并在必要时进行类型转换。
  4. * 它支持从DynaBeans、Maps和标准JavaBeans复制属性。
  5. *
  6. * @param dest 目标bean,属性将被复制到此处。
  7. * @param orig 源bean,属性将从此处复制。
  8. * @throws IllegalAccessException 如果访问字段或方法时出现问题。
  9. * @throws InvocationTargetException 如果底层方法抛出异常。
  10. */
  11. public void copyProperties(final Object dest, final Object orig)
  12. throws IllegalAccessException, InvocationTargetException {
  13. // 验证目标bean和源bean都不为null
  14. if (dest == null) {
  15. throw new IllegalArgumentException("未指定目标bean");
  16. }
  17. if (orig == null) {
  18. throw new IllegalArgumentException("未指定源bean");
  19. }
  20. if (log.isDebugEnabled()) {
  21. log.debug("BeanUtils.copyProperties(" + dest + ", " + orig + ")");
  22. }
  23. // 根据源bean的类型复制属性
  24. if (orig instanceof DynaBean) {
  25. // 当源bean是DynaBean时的处理
  26. final DynaProperty[] origDescriptors = ((DynaBean) orig).getDynaClass().getDynaProperties();
  27. for (DynaProperty origDescriptor : origDescriptors) {
  28. final String name = origDescriptor.getName();
  29. // 检查是否可以从源读取属性并且可以写入目标
  30. if (getPropertyUtils().isReadable(orig, name) && getPropertyUtils().isWriteable(dest, name)) {
  31. final Object value = ((DynaBean) orig).get(name);
  32. copyProperty(dest, name, value);
  33. }
  34. }
  35. } else if (orig instanceof Map) {
  36. // 当源bean是Map时的处理
  37. @SuppressWarnings("unchecked")
  38. final Map<String, Object> propMap = (Map<String, Object>) orig;
  39. for (final Map.Entry<String, Object> entry : propMap.entrySet()) {
  40. final String name = entry.getKey();
  41. if (getPropertyUtils().isWriteable(dest, name)) {
  42. copyProperty(dest, name, entry.getValue());
  43. }
  44. }
  45. } else { // 当源bean是标准JavaBean时的处理
  46. final PropertyDescriptor[] origDescriptors = getPropertyUtils().getPropertyDescriptors(orig);
  47. for (PropertyDescriptor origDescriptor : origDescriptors) {
  48. final String name = origDescriptor.getName();
  49. if ("class".equals(name)) {
  50. continue; // 跳过复制'class'属性,因为它没有意义
  51. }
  52. if (getPropertyUtils().isReadable(orig, name) && getPropertyUtils().isWriteable(dest, name)) {
  53. try {
  54. final Object value = getPropertyUtils().getSimpleProperty(orig, name);
  55. copyProperty(dest, name, value);
  56. } catch (final NoSuchMethodException e) {
  57. // 这不应该发生,因为我们之前检查了可读性
  58. }
  59. }
  60. }
  61. }
  62. }

2. Spring 的 BeanUtils

Spring框架中的BeanUtils提供了与Apache BeanUtils类似的功能,但它通常被认为在性能上优于Apache BeanUtils。Spring的BeanUtils.copyProperties()同样执行浅拷贝,但是它的实现更为简洁和高效,因为它直接调用getter和setter方法来进行属性的拷贝,避免了Apache BeanUtils中的一些额外的类型转换和访问性检查。

使用spring的BeanUtils进行对象拷贝:

  1. public class TestSpringBeanUtils {
  2.    public static void main(String[] args) throws InvocationTargetException, IllegalAccessException {
  3.       //下面只是用于单独测试
  4.        PersonSource personSource = new PersonSource(1, "pjmike", "12345", 21);
  5.        PersonDest personDest = new PersonDest();
  6.        BeanUtils.copyProperties(personSource,personDest);
  7.        System.out.println("persondest: "+personDest);
  8.   }
  9. }

spring下的BeanUtils也是使用 copyProperties方法进行拷贝,只不过它的实现方式非常简单,就是对两个对象中相同名字的属性进行简单的get/set,仅检查属性的可访问性。具体实现如下:

  1. /**
  2. * 复制源对象的属性值到目标对象中。
  3. * <p>注意:源和目标类不需要匹配或相互继承,只要属性名和类型匹配即可。
  4. * 不论源对象中是否存在而目标对象中不存在的属性,都将被忽略。
  5. * <p>自Spring Framework 5.3起,此方法在匹配源和目标对象的属性时会考虑泛型信息。
  6. * 请参阅{@link #copyProperties(Object, Object)}的文档以了解详细信息。
  7. *
  8. * @param source 源对象,其属性值将被复制。
  9. * @param target 目标对象,将接收源对象的属性值。
  10. * @param editable 限制属性设置的目标类(或接口)。如果为null,则不限制。
  11. * @param ignoreProperties 要忽略的属性名数组。如果为null,则不忽略任何属性。
  12. * @throws BeansException 如果复制过程中发生错误。
  13. * @see BeanWrapper
  14. */
  15. private static void copyProperties(Object source, Object target, @Nullable Class<?> editable,
  16. @Nullable String... ignoreProperties) throws BeansException {
  17. // 确保源和目标对象不为空。
  18. Assert.notNull(source, "Source must not be null");
  19. Assert.notNull(target, "Target must not be null");
  20. // 如果提供了editable类,则检查目标对象是否是其实例。
  21. Class<?> actualEditable = target.getClass();
  22. if (editable != null) {
  23. if (!editable.isInstance(target)) {
  24. throw new IllegalArgumentException("Target class [" + target.getClass().getName() +
  25. "] not assignable to Editable class [" + editable.getName() + "]");
  26. }
  27. actualEditable = editable;
  28. }
  29. // 获取目标类的属性描述符。
  30. PropertyDescriptor[] targetPds = getPropertyDescriptors(actualEditable);
  31. List<String> ignoreList = (ignoreProperties != null ? Arrays.asList(ignoreProperties) : null);
  32. // 遍历目标对象的属性,尝试从源对象复制值。
  33. for (PropertyDescriptor targetPd : targetPds) {
  34. Method writeMethod = targetPd.getWriteMethod();
  35. // 检查属性是否有写方法且不在忽略列表中。
  36. if (writeMethod != null && (ignoreList == null || !ignoreList.contains(targetPd.getName()))) {
  37. PropertyDescriptor sourcePd = getPropertyDescriptor(source.getClass(), targetPd.getName());
  38. // 如果源对象中存在对应的属性。
  39. if (sourcePd != null) {
  40. Method readMethod = sourcePd.getReadMethod();
  41. // 确保有读方法。
  42. if (readMethod != null) {
  43. // 使用ResolvableType检查源和目标属性类型的兼容性。
  44. ResolvableType sourceResolvableType = ResolvableType.forMethodReturnType(readMethod);
  45. ResolvableType targetResolvableType = ResolvableType.forMethodParameter(writeMethod, 0);
  46. // 检查类型是否兼容,如果存在未解析的泛型则退回到原始的Class.isAssignableFrom检查。
  47. boolean isAssignable =
  48. (sourceResolvableType.hasUnresolvableGenerics() || targetResolvableType.hasUnresolvableGenerics() ?
  49. ClassUtils.isAssignable(writeMethod.getParameterTypes()[0], readMethod.getReturnType()) :
  50. targetResolvableType.isAssignableFrom(sourceResolvableType));
  51. // 如果类型兼容,则尝试复制属性值。
  52. if (isAssignable) {
  53. try {
  54. // 如果读或写方法不是公开的,则设置为可访问。
  55. if (!Modifier.isPublic(readMethod.getDeclaringClass().getModifiers())) {
  56. readMethod.setAccessible(true);
  57. }
  58. Object value = readMethod.invoke(source);
  59. if (!Modifier.isPublic(writeMethod.getDeclaringClass().getModifiers())) {
  60. writeMethod.setAccessible(true);
  61. }
  62. // 调用目标对象的写方法,传入源对象的属性值。
  63. writeMethod.invoke(target, value);
  64. }
  65. // 抛出BeansException封装复制过程中的任何异常。
  66. catch (Throwable ex) {
  67. throw new FatalBeanException(
  68. "Could not copy property '" + targetPd.getName() + "' from source to target", ex);
  69. }
  70. }
  71. }
  72. }
  73. }
  74. }
  75. }

可以看到,成员变量赋值是基于目标对象的成员列表,并且会跳过ignore的以及在源对象中不存在,所以这个方法是安全的,不会因为两个对象之间的结构差异导致错误,但是必须保证同名的两个成员变量类型相同

五、性能比较

根据历史数据,Spring BeanUtils在性能测试中表现得更好,特别是在处理大量对象拷贝时。这是因为Spring BeanUtils的实现更为直接,而Apache BeanUtils在拷贝时会进行更多的检查和转换,这增加了开销。

六、推荐使用

鉴于Spring BeanUtils的性能优势,以及阿里巴巴Java开发规约中明确建议避免使用Apache BeanUtils,通常更推荐使用Spring BeanUtils进行对象属性的拷贝。此外,Spring BeanUtils与Spring框架的集成更加紧密,如果你的应用正在使用Spring,那么使用Spring BeanUtils会更加自然和高效。

七、深拷贝需求

如果你需要深拷贝(即复制引用类型属性所指向的对象),那么Apache BeanUtils和Spring BeanUtils都不是最佳选择。对于深拷贝的需求,可以考虑以下方式:

1. SerializationUtils.clone()

Apache Commons Lang Apache Commons Lang库提供了一个CloneUtils类,可以用于深拷贝对象。但是请注意,CloneUtils在Apache Commons Lang 3.5版本之后被标记为已弃用,建议使用SerializationUtils.clone()方法,该方法使用序列化实现深拷贝。

  1.   import org.apache.commons.lang3.SerializationUtils;
  2.  
  3.   T clonedObject = SerializationUtils.clone(originalObject);
  4. //示例
  5. List<AutoCalculationRule> rules = SerializationUtils.clone((ArrayList<AutoCalculationRule>) autoCalculationDefinition.getRules());
   

2.SerializableFunction+Iterables.transform()

Google Guava Google Guava库提供了SerializableFunction和Iterables.transform()方法,可以结合使用实现深拷贝,但通常也需要对象实现Serializable接口。

实现:利用SerializableFunction来封装序列化和反序列化的逻辑,然后使用Iterables.transform()来应用这个函数到集合的每个元素上。

  1. import com.google.common.base.Function;
  2.    import com.google.common.collect.Iterables;
  3.    import java.io.ByteArrayInputStream;
  4.    import java.io.ByteArrayOutputStream;
  5.    import java.io.ObjectInputStream;
  6.    import java.io.ObjectOutputStream;
  7. public class DeepCopyWithGuava {
  8.    
  9. /**
  10.     * 使用Java序列化机制实现单个对象的深拷贝。
  11.     *
  12.     * @param original 原始对象,必须实现Serializable接口。
  13.     * @param <T>     泛型类型参数,限定为实现了Serializable的类型。
  14.     * @return 返回深拷贝后的对象。
  15.     */
  16.    public static <T extends Serializable> T deepCopy(T original) {
  17.        try {
  18.            // 创建一个字节数组输出流,用于存储序列化后的对象数据。
  19.            ByteArrayOutputStream baos = new ByteArrayOutputStream();
  20.            // 创建一个对象输出流,用于将对象写入字节数组输出流。
  21.            ObjectOutputStream oos = new ObjectOutputStream(baos);
  22.            // 将原始对象写入输出流,完成序列化。
  23.            oos.writeObject(original);
  24.            // 刷新输出流,确保所有数据都被写出。
  25.            oos.flush();
  26.            
  27.            // 使用字节数组输入流读取序列化后的对象数据。
  28.            ByteArrayInputStream bais = new ByteArrayInputStream(baos.toByteArray());
  29.            // 创建一个对象输入流,用于从字节数组输入流中读取对象。
  30.            ObjectInputStream ois = new ObjectInputStream(bais);
  31.            // 从输入流中读取对象,完成反序列化,得到深拷贝后的对象。
  32.            return (T) ois.readObject();
  33.       } catch (IOException | ClassNotFoundException e) {
  34.            // 如果在序列化或反序列化过程中发生错误,抛出运行时异常。
  35.            throw new RuntimeException("Error during deep copy", e);
  36.       }
  37.   }
  38.    /**
  39.     * 使用Guava的Iterables.transform()方法和自定义的SerializableFunction实现对象集合的深拷贝。
  40.     *
  41.     * @param originalIterable 原始对象集合,其中的元素必须实现Serializable接口。
  42.     * @param <T>             泛型类型参数,限定为实现了Serializable的类型。
  43.     * @return 返回一个包含深拷贝后对象的集合。
  44.     */
  45.    public static <T extends Serializable> Iterable<T> deepCopyIterable(Iterable<T> originalIterable) {
  46.        // 定义一个SerializableFunction,使用deepCopy方法将对象转换为其深拷贝版本。
  47.        Function<T, T> deepCopyFunction = DeepCopyWithGuava::deepCopy;
  48.        // 使用Iterables.transform()方法将deepCopyFunction应用于originalIterable中的每个元素,
  49.        // 得到一个包含深拷贝后对象的新集合。
  50.        return Iterables.transform(originalIterable, deepCopyFunction);
  51.   }
  52.    
  53.    
  54.    // 测试
  55.     public static void main(String[] args) {
  56.        // 示例对象
  57.        class Example implements Serializable {
  58.            int i;
  59.            String s;
  60.            Example(int i, String s) {
  61.                this.i = i;
  62.                this.s = s;
  63.           }
  64.       }
  65.        // 创建一个Example对象的集合
  66.        Iterable<Example> examples = new ArrayList<>();
  67.        examples.add(new Example(1, "one"));
  68.        examples.add(new Example(2, "two"));
  69.        // 使用Guava进行深拷贝
  70.        Iterable<Example> copiedExamples = deepCopyIterable(examples);
  71.        // 输出验证
  72.        for (Example example : copiedExamples) {
  73.            System.out.println(example.i + ": " + example.s);
  74.       }
  75.   }
  76. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/851433
推荐阅读
相关标签
  

闽ICP备14008679号