Commons-BeanUtilsApache commons子项目中的一个软件包,其主要目的是利用反射机制对JavaBean的属性进行处理。

示例代码:

    Employee employee = ...;
    String firstName = (String)
      PropertyUtils.getSimpleProperty(employee, "firstName");
    String lastName = (String)
      PropertyUtils.getSimpleProperty(employee, "lastName");
    ... maNipulate the values ...
    PropertyUtils.setSimpleProperty(employee, "firstName", firstName);
    PropertyUtils.setSimpleProperty(employee, "lastName", lastName);
Apache Commons BeanUtils 1.9.3 发布
Apache Commons BeanUtils 1.9.3 发布了。主要更新内容:Fixed Bugs:BEANUTILS-477: Changed log level in FluentPropertyBeanIntrospectorBEANUTILS-492: Fixed exception when setting indexed properties on DynaBeans. Thanks to Bernhard Seebass.BEANUTILS-470: Precision lost when converting BigDecimal Than

发布于 2016-09-27 08:29:20 | 176 次阅读


Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务