美文网首页
springmvc 接收格式化时间

springmvc 接收格式化时间

作者: DamagedBoy | 来源:发表于2017-06-30 00:07 被阅读0次
    @InitBinder
    public void initBinder(WebDataBinder binder) {
        SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
        dateFormat.setLenient(false);
       binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));
    }
    

    相关文章

      网友评论

          本文标题:springmvc 接收格式化时间

          本文链接:https://www.haomeiwen.com/subject/yotbcxtx.html