使用Spring 默认使用 org.springframework.beans.PropertyEditorRegistrySupport.java 绑定页面数据.
能支持基本数据类型和list、map和自定义的数据类型,但不支持java.util.Date.java
解决的方法有两种:
一:在JavaBean的字段中添加注解指定转换字符串的格式,如yyyy-MM-dd HH:mm:ss
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
private Date updateTime;
二:在全局父Controller类中添加/注册java.util.Date 的类型转换器至WebDataBinder ,所有继承此Controller的子Controller 中Date类型的字段即可实现数据自动的绑定。
@InitBinder
protected void initBinder(WebDataBinder binder) {
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, false));
}
参考
默认实现了自动转换的数据类型:http://blog.csdn.net/lxf9601/article/details/5925810