美文网首页
java POJO Date接收String时间 自动转换

java POJO Date接收String时间 自动转换

作者: wsj1211 | 来源:发表于2019-05-30 17:05 被阅读0次
 /**
     * 为当前控制器注册一个属性编辑器--参数绑定
     * 把时间串格式化为Date类型,再绑定到date。
     * @param binder
     */
    @InitBinder
    protected void initBinder(WebDataBinder binder) {
        binder.registerCustomEditor(Date.class, new CustomDateEditor(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"), true));
    }

相关文章

网友评论

      本文标题:java POJO Date接收String时间 自动转换

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