资讯专栏INFORMATION COLUMN

详叙BeanWrapper和PropertyDescriptor

APICloud / 1316人阅读

摘要:关于它的数据转换使用了如下两种机制隶属于规范。这种类中的方法主要用于访问私有的字段,且方法名符合某种命名规则。如果在两个模块之间传递信息,可以将信息封装进中,这种对象称为值对象,或。

每篇一句

</>复制代码

  1. 千古以来要饭的没有要早饭的,知道为什么吗?
相关阅读

【小家Spring】聊聊Spring中的数据转换:Converter、ConversionService、TypeConverter、PropertyEditor
【小家Spring】聊聊Spring中的数据绑定 --- 属性访问器PropertyAccessor和实现类DirectFieldAccessor的使用

对Spring感兴趣可扫码加入wx群:Java高工、架构师3群(文末有二维码)

前言

这篇文章需要依赖于对属性访问器PropertyAccessor的理解,也就是上篇文章的内容:【小家Spring】聊聊Spring中的数据绑定 --- 属性访问器PropertyAccessor和实现类DirectFieldAccessor的使用

如果说上篇文章所说的PropertyAccessor你没有接触过和听过,那么本文即将要说的重点:BeanWrapper你应该多少有所耳闻吧~
BeanWrapper可以简单的把它理解为:一个方便开发人员使用字符串来对Java Bean的属性执行get、set操作的工具。关于它的数据转换使用了如下两种机制:

PropertyEditor:隶属于Java Bean规范PropertyEditor只提供了String <-> Object的转换。

ConversionService:Spring自3.0之后提供的替代PropertyEditor的机制(BeanWrapper在Spring的第一个版本就存在了~)

</>复制代码

  1. 按照Spring官方文档的说法,当容器内没有注册ConversionService的时候,会退回使用PropertyEditor机制。言外之意:首选方案是ConversionService
    其实了解的伙伴应该知道,这不是BeanWrapper的内容,而是父接口PropertyAccessor的内容~
BeanWrapper

官方解释:Spring低级JavaBeans基础设施的中央接口。通常来说并不直接使用BeanWrapper,而是借助BeanFactory或者DataBinder来一起使用~

</>复制代码

  1. //@since 13 April 2001 很清晰的看到,它也是个`PropertyAccessor`属性访问器
  2. public interface BeanWrapper extends ConfigurablePropertyAccessor {
  3. // @since 4.1
  4. void setAutoGrowCollectionLimit(int autoGrowCollectionLimit);
  5. int getAutoGrowCollectionLimit();
  6. Object getWrappedInstance();
  7. Class getWrappedClass();
  8. // 获取属性们的PropertyDescriptor 获取属性们
  9. PropertyDescriptor[] getPropertyDescriptors();
  10. // 获取具体某一个属性~
  11. PropertyDescriptor getPropertyDescriptor(String propertyName) throws InvalidPropertyException;
  12. }

BeanWrapper相当于一个代理器,Spring委托BeanWrapper完成Bean属性的填充工作。关于此接口的实现类,简单的说它只有唯一实现类:BeanWrapperImpl

BeanWrapperImpl

它作为BeanWrapper接口的默认实现,它足以满足所有的典型应用场景,它会缓存Bean的内省结果而提高效率。

</>复制代码

  1. 在Spring2.5之前,此实现类是非public的,但在2.5之后给public了并且还提供了工厂:PropertyAccessorFactory帮助第三方框架能快速获取到一个实例~

</>复制代码

  1. public class BeanWrapperImpl extends AbstractNestablePropertyAccessor implements BeanWrapper {
  2. // 缓存内省结果~
  3. @Nullable
  4. private CachedIntrospectionResults cachedIntrospectionResults;
  5. // The security context used for invoking the property methods.
  6. @Nullable
  7. private AccessControlContext acc;
  8. // 构造方法都是沿用父类的~
  9. public BeanWrapperImpl() {
  10. this(true);
  11. }
  12. ...
  13. private BeanWrapperImpl(Object object, String nestedPath, BeanWrapperImpl parent) {
  14. super(object, nestedPath, parent);
  15. setSecurityContext(parent.acc);
  16. }
  17. // @since 4.3 设置目标对象~~~
  18. public void setBeanInstance(Object object) {
  19. this.wrappedObject = object;
  20. this.rootObject = object;
  21. this.typeConverterDelegate = new TypeConverterDelegate(this, this.wrappedObject);
  22. // 设置内省的clazz
  23. setIntrospectionClass(object.getClass());
  24. }
  25. // 复写父类的方法 增加内省逻辑
  26. @Override
  27. public void setWrappedInstance(Object object, @Nullable String nestedPath, @Nullable Object rootObject) {
  28. super.setWrappedInstance(object, nestedPath, rootObject);
  29. setIntrospectionClass(getWrappedClass());
  30. }
  31. // 如果cachedIntrospectionResults它持有的BeanClass并不是传入的clazz 那就清空缓存 重新来~~~
  32. protected void setIntrospectionClass(Class clazz) {
  33. if (this.cachedIntrospectionResults != null && this.cachedIntrospectionResults.getBeanClass() != clazz) {
  34. this.cachedIntrospectionResults = null;
  35. }
  36. }
  37. private CachedIntrospectionResults getCachedIntrospectionResults() {
  38. if (this.cachedIntrospectionResults == null) {
  39. // forClass此方法:生成此clazz的类型结果,并且缓存了起来~~
  40. this.cachedIntrospectionResults = CachedIntrospectionResults.forClass(getWrappedClass());
  41. }
  42. return this.cachedIntrospectionResults;
  43. }
  44. ...
  45. // 获取到此属性的处理器。此处是个BeanPropertyHandler 内部类~
  46. @Override
  47. @Nullable
  48. protected BeanPropertyHandler getLocalPropertyHandler(String propertyName) {
  49. PropertyDescriptor pd = getCachedIntrospectionResults().getPropertyDescriptor(propertyName);
  50. return (pd != null ? new BeanPropertyHandler(pd) : null);
  51. }
  52. @Override
  53. protected BeanWrapperImpl newNestedPropertyAccessor(Object object, String nestedPath) {
  54. return new BeanWrapperImpl(object, nestedPath, this);
  55. }
  56. @Override
  57. public PropertyDescriptor[] getPropertyDescriptors() {
  58. return getCachedIntrospectionResults().getPropertyDescriptors();
  59. }
  60. // 获取具体某一个属性的PropertyDescriptor
  61. @Override
  62. public PropertyDescriptor getPropertyDescriptor(String propertyName) throws InvalidPropertyException {
  63. BeanWrapperImpl nestedBw = (BeanWrapperImpl) getPropertyAccessorForPropertyPath(propertyName);
  64. String finalPath = getFinalPath(nestedBw, propertyName);
  65. PropertyDescriptor pd = nestedBw.getCachedIntrospectionResults().getPropertyDescriptor(finalPath);
  66. if (pd == null) {
  67. throw new InvalidPropertyException(getRootClass(), getNestedPath() + propertyName, "No property "" + propertyName + "" found");
  68. }
  69. return pd;
  70. }
  71. ...
  72. // 此处理器处理的是PropertyDescriptor
  73. private class BeanPropertyHandler extends PropertyHandler {
  74. private final PropertyDescriptor pd;
  75. // 是否可读、可写 都是由PropertyDescriptor 去决定了~
  76. // java.beans.PropertyDescriptor~~
  77. public BeanPropertyHandler(PropertyDescriptor pd) {
  78. super(pd.getPropertyType(), pd.getReadMethod() != null, pd.getWriteMethod() != null);
  79. this.pd = pd;
  80. }
  81. ...
  82. @Override
  83. @Nullable
  84. public Object getValue() throws Exception {
  85. ...
  86. ReflectionUtils.makeAccessible(readMethod);
  87. return readMethod.invoke(getWrappedInstance(), (Object[]) null);
  88. }
  89. ...
  90. }
  91. }

从继承体系上,首先我们应该能看出来BeanWrapperImpl的三重身份:

Bean包裹器

属性访问器(PropertyAccessor)

属性编辑器注册表(PropertyEditorRegistry)

从源码中继续分析还能再得出如下两个结论:

它给属性赋值调用的是Method方法,如readMethod.invokewriteMethod.invoke

它对Bean的操作,大都委托给CachedIntrospectionResults去完成~

因此若想了解它,必然主要是要先了解java.beans.PropertyDescriptororg.springframework.beans.CachedIntrospectionResults,首当其冲的自然还有Java内省

Java内省Introspector

首先可以先了解下JavaBean的概念:一种特殊的类,主要用于传递数据信息。这种类中的方法主要用于访问私有的字段,且方法名符合某种命名规则。如果在两个模块之间传递信息,可以将信息封装进JavaBean中,这种对象称为“值对象”(Value Object),或“VO”。

因此JavaBean都有如下几个特征:

属性都是私有的;

有无参的public构造方法;

对私有属性根据需要提供公有的getXxx方法以及setXxx方法;

getters必须有返回值没有方法参数;setter值没有返回值,有方法参数;

符合这些特征的类,被称为JavaBean;JDK中提供了一套API用来访问某个属性的getter/setter方法,这些API存放在java.beans中,这就是内省(Introspector)

==内省和反射的区别==

反射:Java反射机制是在运行中,对任意一个类,能够获取得到这个类的所有属性和方法;它针对的是任意类
内省(Introspector):是Java语言对JavaBean类属性、事件的处理方法

反射可以操作各种类的属性,而内省只是通过反射来操作JavaBean的属性

内省设置属性值肯定会调用seter方法,反射可以不用(反射可直接操作属性Field)

反射就像照镜子,然后能看到.class的所有,是客观的事实。内省更像主观的判断:比如看到getName()内省就会认为这个类中有name字段,但事实上并不一定会有name;通过内省可以获取bean的getter/setter

既然反射比内省比内省强大这么多,那内省用在什么时候场景呢?下面给出一个示例来说明它的用武之地:

</>复制代码

  1. // 就这样简单几步,就完成了表单到User对象的封装~
  2. public void insertUser(HttpServletRequest request) throws Exception {
  3. User user = new User();
  4. // 遍历:根据字段名去拿值即可(此处省略判空、类型转换等细节,不在本文讨论范围)
  5. PropertyDescriptor[] pds = Introspector.getBeanInfo(User.class).getPropertyDescriptors();
  6. for (PropertyDescriptor pd : pds) {
  7. pd.getWriteMethod().invoke(user, request.getParameter(pd.getName()));
  8. }
  9. }

通过内省可以很轻松的将form表单的内容填充进对象里面,比反射轻松省力多了。其实像MyBatis这种框架,底层都用到了Java的内省机制。

内省的API主要有Introspector、BeanInfo、PropertyDescriptor等,下面就以他三为例来操作一个JavaBean:

</>复制代码

  1. @Getter
  2. @Setter
  3. @ToString
  4. public class Child {
  5. private String name;
  6. private Integer age;
  7. }
使用Introspector + BeanInfo

</>复制代码

  1. public static void main(String[] args) throws IntrospectionException {
  2. BeanInfo beanInfo = Introspector.getBeanInfo(Child.class);
  3. BeanDescriptor beanDescriptor = beanInfo.getBeanDescriptor();
  4. MethodDescriptor[] methodDescriptors = beanInfo.getMethodDescriptors();
  5. PropertyDescriptor[] propertyDescriptors = beanInfo.getPropertyDescriptors();
  6. // 打印
  7. System.out.println(beanDescriptor);
  8. System.out.println("------------------------------");
  9. Arrays.stream(methodDescriptors).forEach(x -> System.out.println(x));
  10. System.out.println("------------------------------");
  11. Arrays.stream(propertyDescriptors).forEach(x -> System.out.println(x));
  12. System.out.println("------------------------------");
  13. }

输入内容如下:

</>复制代码

  1. java.beans.BeanDescriptor[name=Child; beanClass=class com.fsx.bean.Child]
  2. ------------------------------
  3. java.beans.MethodDescriptor[name=getClass; method=public final native java.lang.Class java.lang.Object.getClass()]
  4. java.beans.MethodDescriptor[name=getName; method=public java.lang.String com.fsx.bean.Child.getName()]
  5. java.beans.MethodDescriptor[name=setAge; method=public void com.fsx.bean.Child.setAge(java.lang.Integer)]
  6. java.beans.MethodDescriptor[name=setName; method=public void com.fsx.bean.Child.setName(java.lang.String)]
  7. java.beans.MethodDescriptor[name=getAge; method=public java.lang.Integer com.fsx.bean.Child.getAge()]
  8. java.beans.MethodDescriptor[name=wait; method=public final void java.lang.Object.wait() throws java.lang.InterruptedException]
  9. java.beans.MethodDescriptor[name=notifyAll; method=public final native void java.lang.Object.notifyAll()]
  10. java.beans.MethodDescriptor[name=notify; method=public final native void java.lang.Object.notify()]
  11. java.beans.MethodDescriptor[name=wait; method=public final void java.lang.Object.wait(long,int) throws java.lang.InterruptedException]
  12. java.beans.MethodDescriptor[name=hashCode; method=public native int java.lang.Object.hashCode()]
  13. java.beans.MethodDescriptor[name=wait; method=public final native void java.lang.Object.wait(long) throws java.lang.InterruptedException]
  14. java.beans.MethodDescriptor[name=equals; method=public boolean java.lang.Object.equals(java.lang.Object)]
  15. java.beans.MethodDescriptor[name=toString; method=public java.lang.String com.fsx.bean.Child.toString()]
  16. ------------------------------
  17. java.beans.PropertyDescriptor[name=age; propertyType=class java.lang.Integer; readMethod=public java.lang.Integer com.fsx.bean.Child.getAge(); writeMethod=public void com.fsx.bean.Child.setAge(java.lang.Integer)]
  18. java.beans.PropertyDescriptor[name=class; propertyType=class java.lang.Class; readMethod=public final native java.lang.Class java.lang.Object.getClass()]
  19. java.beans.PropertyDescriptor[name=name; propertyType=class java.lang.String; readMethod=public java.lang.String com.fsx.bean.Child.getName(); writeMethod=public void com.fsx.bean.Child.setName(java.lang.String)]
  20. ------------------------------

可以看到getMethodDescriptors()它把父类的MethodDescriptor也拿出来了。
PropertyDescriptor中比较特殊的是因为有getClass()方法,因此class也算是一个PropertyDescriptor,但是它没有writeMethod哦~

</>复制代码

  1. 关于BeanInfoSpring在3.1提供了一个类ExtendedBeanInfo继承自它实现了功能扩展,并且提供了BeanInfoFactory来专门生产它~~~(实现类为:ExtendedBeanInfoFactory

但是如果只想拿某一个属性的话,使用Introspector就不是那么方便了,下面介绍更为常用的PropertyDescriptor来处理某一个属性~

PropertyDescriptor 属性描述器

属性描述符描述了Java bean通过一对访问器方法导出的一个属性。上面的示例此处用PropertyDescriptor试试:

</>复制代码

  1. public static void main(String[] args) throws IntrospectionException {
  2. PropertyDescriptor age = new PropertyDescriptor("age", Child.class);
  3. System.out.println(age.getPropertyType()); //class java.lang.Integer
  4. System.out.println(age.getDisplayName()); //age
  5. // 最重要的两个方法~~~
  6. System.out.println(age.getReadMethod()); //public java.lang.Integer com.fsx.bean.Child.getAge()
  7. System.out.println(age.getWriteMethod()); //public void com.fsx.bean.Child.setAge(java.lang.Integer)
  8. }

可以看到它可以实现更加细粒度的控制。将PropertyDescriptor类的一些主要方法描述如下:

getPropertyType(),获得属性的Class对象;

getReadMethod(),获得用于读取属性值的方法;

getWriteMethod(),获得用于写入属性值的方法;

setReadMethod(Method readMethod),设置用于读取属性值的方法;

setWriteMethod(Method writeMethod),设置用于写入属性值的方法。

CachedIntrospectionResults

Spring如果需要依赖注入那么就必须依靠Java内省这个特性了,说到Spring IOC与JDK内省的结合那么就不得不说一下Spring中的CachedIntrospectionResults这个类了。
它是Spring提供的专门用于缓存JavaBean的PropertyDescriptor描述信息的类,不能被应用代码直接使用。

它的缓存信息是被静态存储起来的(应用级别),因此对于同一个类型的被操作的JavaBean并不会都创建一个新的CachedIntrospectionResults,因此,这个类使用了工厂模式,使用私有构造器和一个静态的forClass工厂方法来获取实例。

</>复制代码

  1. public final class CachedIntrospectionResults {
  2. // 它可以通过在spring.properties里设置这个属性,来关闭内省的缓存~~~
  3. public static final String IGNORE_BEANINFO_PROPERTY_NAME = "spring.beaninfo.ignore";
  4. private static final boolean shouldIntrospectorIgnoreBeaninfoClasses = SpringProperties.getFlag(IGNORE_BEANINFO_PROPERTY_NAME);
  5. // 此处使用了SpringFactoriesLoader这个SPI来加载BeanInfoFactory,唯一实现类是ExtendedBeanInfoFactory
  6. /** Stores the BeanInfoFactory instances. */
  7. private static List beanInfoFactories = SpringFactoriesLoader.loadFactories(
  8. BeanInfoFactory.class, CachedIntrospectionResults.class.getClassLoader());
  9. static final Set acceptedClassLoaders = Collections.newSetFromMap(new ConcurrentHashMap<>(16));
  10. static final ConcurrentMap, CachedIntrospectionResults> strongClassCache = new ConcurrentHashMap<>(64);
  11. static final ConcurrentMap, CachedIntrospectionResults> softClassCache = new ConcurrentReferenceHashMap<>(64);
  12. // 被包裹类的BeanInfo~~~也就是目标类
  13. private final BeanInfo beanInfo;
  14. // 它缓存了被包裹类的所有属性的属性描述器PropertyDescriptor。
  15. private final Map propertyDescriptorCache;
  16. ... // 其它的都是静态方法
  17. // 只有它会返回一个实例,此类是单例的设计~ 它保证了每个beanClass都有一个CachedIntrospectionResults 对象,然后被缓存起来~
  18. static CachedIntrospectionResults forClass(Class beanClass) throws BeansException { ... }
  19. }

本处理类的核心内容是Java内省getBeanInfo()以及PropertyDescriptor~注意:为了使此内省缓存生效,有个前提条件请保证了:

确保将Spring框架的Jar包和你的应用类使用的是同一个ClassLoader加载的,这样在任何情况下会允许随着应用的生命周期来清楚缓存。

因此对于web应用来说,Spring建议给web容器注册一个IntrospectorCleanupListener监听器来防止多ClassLoader布局,这样也可以有效的利用caching从而提高效率~

监听器的配置形如这样(此处以web.xml里配置为例):

</>复制代码

  1. org.springframework.web.util.IntrospectorCleanupListener

</>复制代码

  1. 说明:请保证此监听器配置在第一个位置,比ContextLoaderListener还靠前~ 此监听器能有效的防止内存泄漏问题~~~(因为内省的缓存是应用级别的全局缓存,很容易造成泄漏的~)
    其实流行框架比如struts, Quartz等在使用JDK的内省时,存在没有释的内存泄漏问题~
DirectFieldAccessFallbackBeanWrapper

说完了BeanWrapperImpl,可以看看它的子类DirectFieldAccessFallbackBeanWrapper,他就像BeanWrapperImplDirectFieldAccessor的结合体。它先用BeanWrapperImpl.getPropertyValue(),若抛出异常了(毕竟内省不是十分靠谱,哈哈)再用DirectFieldAccessor~~~此子类在JedisClusterConnection有被使用到过,比较简单没啥太多好说的~

PropertyAccessorFactory

Spring2.5后提供的快速获取PropertyAccessor两个重要实现类的工厂。

</>复制代码

  1. public final class PropertyAccessorFactory {
  2. private PropertyAccessorFactory() {
  3. }
  4. // 生产一个BeanWrapperImpl(最为常用)
  5. public static BeanWrapper forBeanPropertyAccess(Object target) {
  6. return new BeanWrapperImpl(target);
  7. }
  8. // 生产一个DirectFieldAccessor
  9. public static ConfigurablePropertyAccessor forDirectFieldAccess(Object target) {
  10. return new DirectFieldAccessor(target);
  11. }
  12. }
BeanWrapper使用Demo

说了这么多,是时候实战一把了~

</>复制代码

  1. // 省略Apple类和Size类,有需要的请参照上篇文章(加上@Getter、@Setter即可
  2. public static void main(String[] args) {
  3. Apple apple = new Apple();
  4. BeanWrapper beanWrapper = PropertyAccessorFactory.forBeanPropertyAccess(apple);
  5. // ================当作一个普通的PropertyAccessor来使用 默认情况下字段也都必须有初始值才行~===================
  6. // 设置普通属性
  7. beanWrapper.setPropertyValue("color", "红色"); //请保证对应字段有set方法才行,否则抛错:Does the parameter type of the setter match the return type of the getter?
  8. // 设置嵌套属性(注意:此处能够正常work是因为有= new Size(),
  9. // 否则报错:Value of nested property "size" is null 下同~)
  10. beanWrapper.setPropertyValue("size.height", 10);
  11. // 设置集合/数组属性
  12. beanWrapper.setPropertyValue("arrStr[0]", "arrStr");
  13. beanWrapper.setPropertyValue("arrStr[1]", "arrStr1"); // 注意:虽然初始化时初始化过数组了,但是仍以此处的为准
  14. // =========打印输出
  15. System.out.println(apple); //Apple(color=红色, size=Size(height=10, width=null), arrStr=[arrStr, arrStr1], listStr=[], map={}, listList=[[]], listMap=[{}])
  16. // 当作BeanWrapper使用
  17. PropertyDescriptor[] propertyDescriptors = beanWrapper.getPropertyDescriptors();
  18. PropertyDescriptor color = beanWrapper.getPropertyDescriptor("color");
  19. System.out.println(propertyDescriptors.length); // 8
  20. System.out.println(color); //org.springframework.beans.GenericTypeAwarePropertyDescriptor[name=color]
  21. System.out.println(beanWrapper.getWrappedClass()); //class com.fsx.bean.Apple
  22. System.out.println(beanWrapper.getWrappedInstance()); //Apple(color=红色, size=Size(height=10...
  23. }

上面代码能够清晰的表示了通过BeanWrapper来操作JavaBean还是非常之简便的。

最后,上一张比较丑的结构图,画一画属性编辑器、类型转换器、属性解析器、属性访问器大致的一个关系(此图不喜勿碰):

总结

BeanWrapper接口,作为Spring内部的一个核心接口,正如其名,它是bean的包裹类,即在内部中将会保存该bean的实例,提供其它一些扩展功能。

Spring对Bean的属性存取都是通过BeanWrapperImpl实现的,BeanWrapperImplBean是一对一的关系,BeanWrapperImpl通过属性的读方法写方法来存取Bean属性的。为了更加深刻的了解BeanWrapper,下篇文章会深入分析Spring BeanFactory对它的应用~

知识交流

==The last:如果觉得本文对你有帮助,不妨点个赞呗。当然分享到你的朋友圈让更多小伙伴看到也是被作者本人许可的~==

**若对技术内容感兴趣可以加入wx群交流:Java高工、架构师3群
若群二维码失效,请加wx号:fsx641385712(或者扫描下方wx二维码)。并且备注:"java入群" 字样,会手动邀请入群**

文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。

转载请注明本文地址:https://www.ucloud.cn/yun/75480.html

相关文章

  • 【小家Spring】Spring IoC是如何使用BeanWrapperJava内省结合起来给Be

    摘要:从层层委托的依赖关系可以看出,的依赖注入给属性赋值是层层委托的最终给了内省机制,这是框架设计精妙处之一。当然分享到你的朋友圈让更多小伙伴看到也是被作者本人许可的若对技术内容感兴趣可以加入群交流高工架构师群。 每篇一句 具备了技术深度,遇到问题可以快速定位并从根本上解决。有了技术深度之后,学习其它技术可以更快,再深入其它技术也就不会害怕 相关阅读 【小家Spring】聊聊Spring中的...

    waruqi 评论0 收藏0
  • 【小家Spring】聊聊Spring中的数据绑定 --- DataBinder本尊(源码分析)

    摘要:对中的数据绑定场景,小伙伴们就再熟悉不过了。比如包下大名鼎鼎的源码分析的源码相对来说还是颇为复杂的,它提供的能力非常强大,也注定了它的方法非常多属性也非常多。并且备注入群字样,会手动邀请入群 每篇一句 唯有热爱和坚持,才能让你在程序人生中屹立不倒,切忌跟风什么语言或就学什么去~ 相关阅读 【小家Spring】聊聊Spring中的数据绑定 --- 属性访问器PropertyAccesso...

    charles_paul 评论0 收藏0
  • java 获取对象中为null的字段

    private static String[] getNullPropertyNames(Object source) { final BeanWrapper src = new BeanWrapperImpl(source); java.beans.PropertyDescriptor[] pds = src.getPropertyDescriptors(); ...

    MrZONT 评论0 收藏0
  • BeanUtils.copyProperties在拷贝属性时忽略空值

    摘要:最近在写一个小玩意的时候,需要在两个对象之间拷贝属性使用的是可是,有一个问题就是当对象的键值为时就会把对象的对应键值覆盖成空了这不科学所以找了下面的这个方式来解决 最近在写一个小玩意的时候,需要在两个对象之间拷贝属性 使用的是 BeanUtils.copyProperties 可是,有一个问题 就是当src对象的键值为Null时 就会把target对象的对应键值覆盖成空了 ...

    李义 评论0 收藏0
  • Java BeanUtils对象复制工具类及方法

    1. BeanUtils.copyProperties(Object source, Object target) 用法: 讲source的属性值复制到target,属性为null时也会进行复制。 需求:排除null值进行复制 public class CopyObjectUtil { public static String[] getNullPropertyNames(Object...

    Kerr1Gan 评论0 收藏0

发表评论

0条评论

最新活动
阅读需要支付1元查看
<