1.建立CustomDateEdtor .java
/**
* 日期自定義轉(zhuǎn)換器
* @author lx
*
*/
public class CustomDateEdtor implements WebBindingInitializer {
@Override
public void initBinder(WebDataBinder binder, WebRequest request) {
// TODO Auto-generated method stub
//轉(zhuǎn)換日期格式
DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));
}
}