SpringBoot 解决前台传递日期类型字符串转换问题

1.放在controller中

/**
     * 解决前台传递日期类型字符串转换问题
     * @param bin
     */
    @InitBinder
    public void initBinder(ServletRequestDataBinder bin){
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        CustomDateEditor cust = new CustomDateEditor(sdf,true);
        bin.registerCustomEditor(Date.class,cust);
    }

2.在配置文件中配置

spring.mvc.format.date-time=yyyy-MM-dd HH:mm:ss

你可能感兴趣的:(SpringBoot 解决前台传递日期类型字符串转换问题)