关于BeanUtils的一些记录

BeanUtils.populate(Object bean, Map properties)//将Map的值赋给Object的对象

BeanUtils.setProperty(Object bean,String name,Object value)//把value赋值给bean中名称为name的属性

BeanUtils.copyProperties(Object n, Object o );//把o中与n中相同的发生赋值给n(如果其实有BigDecimal类型属性,

则需要使用:ConvertUtils.register(new BigDecimalConverter(new BigDecimal(0)), BigDecimal.class);将其BigDecimal进行注册一下)

 

总之一句话,Apache Commons绝对是神器!!http://commons.apache.org/

你可能感兴趣的:(关于BeanUtils的一些记录)