yidaixiaoxia1217 2014-04-24 13:43
浏览 348
已采纳

使用apache的BeanUtils,一个很诡异的问题

public class MyBeanUtils
extends org.apache.commons.beanutils.BeanUtils {

public static void copyBeanNotNull2Bean(Object databean,Object tobean)throws Exception
{
PropertyDescriptor origDescriptors[] =
PropertyUtils.getPropertyDescriptors(databean);
for (int i = 0; i < origDescriptors.length; i++) {
String name = origDescriptors[i].getName();
// String type = origDescriptors[i].getPropertyType().toString();
if ("class".equals(name)) {
continue; // No point in trying to set an object's class
}
if (PropertyUtils.isReadable(databean, name) &&
PropertyUtils.isWriteable(tobean, name)) {
try {
Object value = PropertyUtils.getSimpleProperty(databean, name);
if(value!=null){
copyProperty(tobean, name, value);
}
}
catch (java.lang.IllegalArgumentException ie) {
logger.error(ie,ie); // Should not happen
}
catch (Exception e) {
logger.error(e,e); // Should not happen
}

      }
  }

}
}

使用这段代码进行javabean的复制,并且srcBean为null的字段,不进行复制。

这段代码测试环境是正常的,在生产环境下,运行一段时间后(大概有1个月的样子),就会出现很诡异的问题,javaBean里面Integer,Long等类型的 复制后字段变成null了(源javaBean和目标javaBean该字段都不不为空的情况下)。

正在持续监测中...

注:copyProperty 方法是继承于org.apache.commons.beanutils.BeanUtils

  • 写回答

1条回答 默认 最新

  • lovejiegirl1 2014-04-25 10:54
    关注

    javabean的复制最好需要考虑下java基本类型的默认值,不然的话很有可能以默认值给覆盖掉了。
    要不就利用jdk1.5+的自动装箱拆箱,在javabean中定义类型均为Integer,Long Double等类型,这样就可以用null来判断了

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 pandas 的list追加问题
  • ¥15 给我一个openharmony跑通webrtc实现视频会议的简单demo项目,sdk为12
  • ¥15 vb6.0使用jmail接收smtp邮件并另存附件到D盘
  • ¥30 vb net 使用 sendMessage 如何输入鼠标坐标
  • ¥15 关于freesurfer使用freeview可视化的问题
  • ¥100 谁能在荣耀自带系统MagicOS版本下,隐藏手机桌面图标?
  • ¥15 求SC-LIWC词典!
  • ¥20 有关esp8266连接阿里云
  • ¥15 C# 调用Bartender打印机打印
  • ¥15 我这个代码哪里有问题 acm 平台上显示错误 90%,我自己运行好像没什么问题