6

我只是想知道是否可以告诉@InitBinder 表单中的空浮点值将转换为0。

我知道 float 是一种原始数据类型,但我仍然想将 null 或空值转换为 0。

如果这是可能的,我怎么能做到这一点?

否则,我将使用字符串而不是浮点数来解决

4

2 回答 2

4

将 CustomNumberEditor 的子类定义为

import org.springframework.beans.propertyeditors.CustomNumberEditor;
import org.springframework.util.StringUtils;

public class MyCustomNumberEditor extends CustomNumberEditor {

    public MyCustomNumberEditor(Class<? extends Number> numberClass) throws IllegalArgumentException {
        super(numberClass, true);
    }

    @Override
    public void setAsText(String text) throws IllegalArgumentException {
        if (!StringUtils.hasText(text)) {
            setValue(0);
        }else {
            super.setAsText(text.trim());
        }
    }

}

然后在你的控制器类中(我为我的所有应用程序控制器创建了一个 BaseController,我需要为我的应用程序中的所有数字基元类型提供这种行为,所以我只需在我的 BaseController 中定义它),为各种基元类型注册绑定器。注意 MyCustomNumberEditor 的构造函数参数必须是 Number 的子类,而不是原始类类型。

   @InitBinder
public void registerCustomerBinder(WebDataBinder binder) {
    binder.registerCustomEditor(double.class, new MyCustomNumberEditor(Double.class));
    binder.registerCustomEditor(float.class, new MyCustomNumberEditor(Float.class));
    binder.registerCustomEditor(long.class, new MyCustomNumberEditor(Long.class));
    binder.registerCustomEditor(int.class, new MyCustomNumberEditor(Integer.class));
....    
}
于 2014-02-14T02:30:46.453 回答
3

是的,您总是可以这样做。Spring 有一个CustomNumberEditor可自定义的属性编辑器,可用于任何 Number 子类(如 Integer、Long、Float、Double)。它默认由 BeanWrapperImpl 注册,但可以通过将其自定义实例注册为自定义来覆盖编辑器。这意味着您可以扩展这样的类

public class MyCustomNumberEditor extends CustomNumberEditor{

    public MyCustomNumberEditor(Class<? extends Number> numberClass, NumberFormat numberFormat, boolean allowEmpty) throws IllegalArgumentException {
        super(numberClass, numberFormat, allowEmpty);
    }

    public MyCustomNumberEditor(Class<? extends Number> numberClass, boolean allowEmpty) throws IllegalArgumentException {
        super(numberClass, allowEmpty);
    }

    @Override
    public String getAsText() {
        //return super.getAsText();
        return "Your desired text";
    }

    @Override
    public void setAsText(String text) throws IllegalArgumentException {
        super.setAsText("set your desired text");
    }

}

然后在你的控制器中正常注册它:

 @InitBinder
    public void initBinder(WebDataBinder binder) {

       binder.registerCustomEditor(Float.class,new MyCustomNumberEditor(Float.class, true));
    }

这应该完成任务。

于 2013-02-20T10:06:01.920 回答