从BeanUtils的一个坑谈起

BeanUtils可以将参数封装成一个bean,方法 setProperty,可以对属性进行赋值。但是尤其是要注意的是它会对属性设置默认值,而且默认值会有歧义。

比如说Bean TestBean 的某个属性的类型是Integer,

TestBean testBean = new TestBean();
try {
    BeanUtils.setProperty(testBean, "testProperty", null)
} catch (Exception ex) {..... }
System.out.println("testProperty的值为:"+testBean.getTestPropety);

其结果将会输入为0,这无疑是有坑的。

与这个作用类似的Spring MVC有一个BaseCommandController也是可以将请求参数封装成Bean,但是null

的值不会转换为默认值。使用的时候切记。

如果BeanUtils也想不转换为类型(如 Integer)的默认值(如0),可以使用如下:

try {
    ConvertUtils.register(new IntegerConverter(null), Integer.class);
    BeanUtils.setProperty(testBean,"testProperty",null)
} catch(Exception ex){
    ......
}


或者

PropertyUtils.getWriteMethod(PropertyUtils.getPropertyDescriptor(this, propertyName)).invoke(this, new Object[]{null}); 

你可能感兴趣的:(从BeanUtils的一个坑谈起)