在ModelAttribute中未调用PropertyEditor

时间:2013-07-22 18:00:15

标签: spring spring-mvc

作为我的头衔,我有问题,我无法理解为什么它不能。所以,我有一个Person类,PersonPropertyEditor类和Controller。

就是这样:

人员类:

public class Person {
    private String name;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }
}

PersonPropertyEditor类:

public class PersonPropertyEditor extends PropertyEditorSupport {
    @Override
    public void setAsText(String text) throws IllegalArgumentException {
        Person person = new Person();
        person.setName(text);

        setValue(person);
    }
}

控制器:

    @InitBinder
    public void initBinder(WebDataBinder webDataBinder) {
        webDataBinder.registerCustomEditor(Person.class,
                new PersonPropertyEditor());
    }

    @RequestMapping(value = "/addPerson", method = RequestMethod.POST)
    public String homePost(
            @ModelAttribute("personConverted") Person personConverted) {
        System.out.println(personConverted.getName());
        return "redirect:/home";
    }

JSP文件:

    <form action="addPerson" method="post">
        <input type="text" name="personConverted" />
        <input type="submit" value="Submit" />
    <form>

所以,我注册了一个自定义属性编辑器,在控制器中,我将从字符串转换为person对象,但我不知道为什么当我使用ModelAttribute时,Spring不会调用我的自定义属性编辑器,但如果我使用RequestParam,没关系。

我知道我可以使用Converter来做到这一点,但我只是想明白Spring为什么不这样称,那是Spring的错误?

提前致谢!

1 个答案:

答案 0 :(得分:0)

我使用@JsonDeserialize

解决了这个问题
@JsonDeserialize(using=DateTimeDeserializer.class)
public DateTime getPublishedUntil() {
    return publishedUntil;
}

我必须实现自定义反序列化器。

public class DateTimeDeserializer extends StdDeserializer<DateTime> {

private DateTimeFormatter formatter = DateTimeFormat.forPattern(Constants.DATE_TIME_FORMAT);

public DateTimeDeserializer(){
    super(DateTime.class);
}

@Override
public DateTime deserialize(JsonParser json, DeserializationContext context) throws IOException, JsonProcessingException {
        try {
            if(StringUtils.isBlank(json.getText())){
                return null;
            }
            return formatter.parseDateTime(json.getText());
        } catch (ParseException e) {
            return null;
        }
}

}