java – Spring MVC忽略配置的PropertyEditor并改为使用构造函数

前端之家收集整理的这篇文章主要介绍了java – Spring MVC忽略配置的PropertyEditor并改为使用构造函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用 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中使用String的构造函数 – 这是对的吗?

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

解决方法

通过引入自己的构造函数,可以禁用编译器生成的默认构造函数.框架可能需要默认构造函数,以便能够实例化您的Thing.如果你真的需要自己的构造函数,你也可以提供一个没有任何参数供框架使用的版本.
原文链接:https://www.f2er.com/java/129020.html

猜你在找的Java相关文章