Spring MVC忽略配置的PropertyEditor并使用构造函数

时间:2012-07-02 13:44:17

标签: java spring spring-mvc

使用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中带字符串的构造函数 - 这是对的吗?

为什么要这样做并忽略已注册的编辑器?如何让它停止这样做?

2 个答案:

答案 0 :(得分:0)

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

答案 1 :(得分:0)

注册PropertyEditorSupport时锁定属性名称:

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