springmvc 接收格式化时间

2017-06-30  本文已影响0人  DamagedBoy
@InitBinder
public void initBinder(WebDataBinder binder) {
    SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
    dateFormat.setLenient(false);
   binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));
}
上一篇下一篇

猜你喜欢

热点阅读