IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 游戏开发 -> 记录一次@Accessors(chain = true) 引发的BeanUtils的反射问题 -> 正文阅读

[游戏开发]记录一次@Accessors(chain = true) 引发的BeanUtils的反射问题

环境:JDK7,tomcat7

问题:bean对象使用了@Accessors(chain = true) 注解,

  • 在调用BeanUtils.setProperty(t, field.getName(), objvalue);

  • 由于链式调用重写了 set方法返回值为对象this,导致BeanUtils调用反射获取set方法时获取不到,最终没有对需要值的对象set进入值

  • 但是实际测试和本地环境可以获取到值,而生产环境获取不到

    网上找到拿不到值的原因

cglib中使用 Java rt.jar包中的java.beans.Introspector类,在java.beans.Introspector类520行:只获取返回值是void类型的setxxxx方法,而@Accessors(chain=true)下setter方法返回当前对象,这个显然会有问题。

?                    if (argCount == 0) {
? ? ? ? ? ? ? ? ? ? ? ? ?if (name.startsWith(GET_PREFIX)) {
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?// Simple getter
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?pd = new PropertyDescriptor(this.beanClass, name.substring(3), method, null);
? ? ? ? ? ? ? ? ? ? ? ?  } else if (resultType == boolean.class && name.startsWith(IS_PREFIX)) {
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?// Boolean getter
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?pd = new PropertyDescriptor(this.beanClass, name.substring(2), method, null);
? ? ? ? ? ? ? ? ? ? ? ?  }
? ? ? ? ? ? ? ? ? ?  } else if (argCount == 1) {
? ? ? ? ? ? ? ? ? ? ? ? ?if (int.class.equals(argTypes[0]) && name.startsWith(GET_PREFIX)) {
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?pd = new IndexedPropertyDescriptor(this.beanClass, name.substring(3), null, null, method, null);
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?// 核心问题在这里如果set方法返回不是void则不把set方法放到当前类的
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?// private HashMap pdStore = new HashMap();中
? ? ? ? ? ? ? ? ? ? ? ?  } else if (void.class.equals(resultType) && name.startsWith(SET_PREFIX)) {
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?// Simple setter
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?pd = new PropertyDescriptor(this.beanClass, name.substring(3), null, method);
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?if (throwsException(method, PropertyVetoException.class)) {
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?pd.setConstrained(true);
? ? ? ? ? ? ? ? ? ? ? ? ? ?  }
? ? ? ? ? ? ? ? ? ? ? ?  }
? ? ? ? ? ? ? ? ? ?  } else if (argCount == 2) {
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?if (void.class.equals(resultType) && int.class.equals(argTypes[0]) && name.startsWith(SET_PREFIX)) {
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?pd = new IndexedPropertyDescriptor(this.beanClass, name.substring(3), null, null, null, method);
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?if (throwsException(method, PropertyVetoException.class)) {
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?pd.setConstrained(true);
? ? ? ? ? ? ? ? ? ? ? ? ? ?  }
? ? ? ? ? ? ? ? ? ? ? ?  }
? ? ? ? ? ? ? ? ? ?  }

这段代码结束后调用下一个方法processPropertyDescriptors

查看DefaultBeanIntrospector类的核心生产beanInfo

? public void introspect(final IntrospectionContext icontext) {
? ? ? ? ?BeanInfo beanInfo = null;
? ? ? ? ?try {
? ? ? ? ? ? ?// 这里通过上述类Introspector 获取bean,按照上面说法此时如果set方法返回的不是Null 依然还拿不到方法
? ? ? ? ? ? ?beanInfo = Introspector.getBeanInfo(icontext.getTargetClass());
? ? ? ?  } catch (final IntrospectionException e) {
? ? ? ? ? ? ?// no descriptors are added to the context
? ? ? ? ? ? ?log.error(
? ? ? ? ? ? ? ? ? ? ?"Error when inspecting class " + icontext.getTargetClass(),
? ? ? ? ? ? ? ? ? ? ?e);
? ? ? ? ? ? ?return;
? ? ? ?  }
??
? ? ? ? ?PropertyDescriptor[] descriptors = beanInfo.getPropertyDescriptors();
? ? ? ? ?if (descriptors == null) {
? ? ? ? ? ? ?descriptors = new PropertyDescriptor[0];
? ? ? ?  }
??
? ? ? ? ?handleIndexedPropertyDescriptors(icontext.getTargetClass(),
? ? ? ? ? ? ? ? ?descriptors);
? ? ? ? ?icontext.addPropertyDescriptors(descriptors);
? ?  }

整个方法走完此时icontext中添加的descriptors 对象属性值writeMethodName 依然是null

实际上apache除了默认提供的DefaultBeanIntrospector 使用jdk的内省Introspector

还提供了FluentPropertyBeanIntrospector 和SuppressPropertiesBeanIntrospector

其中FluentPropertyBeanIntrospector 可以解决上述问题

其方法introspect() ,在DefaultBeanIntrospector 执行后如果setWriteMethod还是null,会将只根据方法名称获取的方法装入

public void introspect(final IntrospectionContext icontext)
            throws IntrospectionException {
        for (final Method m : icontext.getTargetClass().getMethods()) {
            if (m.getName().startsWith(getWriteMethodPrefix())) {
                final String propertyName = propertyName(m);
                final PropertyDescriptor pd = icontext
                        .getPropertyDescriptor(propertyName);
                try {
                    if (pd == null) {
                        icontext.addPropertyDescriptor(createFluentPropertyDescritor(
                                m, propertyName));
                    } else if (pd.getWriteMethod() == null) {
                        pd.setWriteMethod(m);
                    }
                } catch (final IntrospectionException e) {
                    log.info("Error when creating PropertyDescriptor for " + m
                            + "! Ignoring this property.");
                    log.debug("Exception is:", e);
                }
            }
        }
    }

而SuppressPropertiesBeanIntrospector 是抑制内省 ,观察其introspect() 方法,

public void introspect(final IntrospectionContext icontext) throws IntrospectionException {
        for (final String property : getSuppressedProperties()) {
            icontext.removePropertyDescriptor(property);
        }
    }

会在实际过程中 过滤 构造SuppressPropertiesBeanIntrospector时 , 传入的final Collection<String> propertiesToSuppress,集合进行方法过滤remove

当然也可以根据实际业务需求 继续BeanIntrospector 编写自定义的 内省过滤器

我们项目中后续使用了BeanConverter 直接 生成set get方法的实体类

  游戏开发 最新文章
6、英飞凌-AURIX-TC3XX: PWM实验之使用 GT
泛型自动装箱
CubeMax添加Rtthread操作系统 组件STM32F10
python多线程编程:如何优雅地关闭线程
数据类型隐式转换导致的阻塞
WebAPi实现多文件上传,并附带参数
from origin ‘null‘ has been blocked by
UE4 蓝图调用C++函数(附带项目工程)
Unity学习笔记(一)结构体的简单理解与应用
【Memory As a Programming Concept in C a
上一篇文章      下一篇文章      查看所有文章
加:2022-03-21 21:25:48  更:2022-03-21 21:28:55 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2025年1日历 -2025/1/16 18:57:51-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码