7

使用 Spring 3.1 并给出这种情况:

class Thing {
  public Thing() {}
  public Thing(String someProperty) {}
}

class ThingEditor extends PropertyEditorSupport{
    @Override
    public void setAsText(String text) {
        if (text != null) {
            Thing thing = new Thing(text); // or by using a setter method
            setValue(thing);  

        }

    }
}

class SomeController {
    @InitBinder
    public void initBinder(WebDataBinder binder) {
        binder.registerCustomEditor(Thing.class, new ThingEditor());
    }
}

我发现注册的属性编辑器没有被调用,除非我删除了接受字符串的构造函数Thing- 这是对的吗?

为什么这样做并忽略注册编辑,我怎样才能让它停止这样做?

4

2 回答 2

0

通过引入自己的构造函数,可以禁用编译器生成的默认构造函数。框架可能需要默认构造函数才能实例化您的事物。如果你真的需要自己的构造函数,你也可以提供一个不带任何参数的版本供框架使用。

于 2012-07-02T13:52:19.877 回答
0

注册 PropertyEditorSupport 时锁定属性名称:

@InitBinder
public void initBinder(WebDataBinder binder) {
    binder.registerCustomEditor(Thing.class, "someProperty", new ThingEditor());
}
于 2016-08-09T09:29:24.340 回答