springboot中日期格式转换问题

表单中有日期输入

springboot中日期格式转换问题

提交后报错

springboot中日期格式转换问题

查看源码

类org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration中springboot中日期格式转换问题

application.properties文件中没有显示指定spring.mvc.date-format的值,使用的默认值。

在org.springframework.web.servlet.DispatcherServlet类中的doDispatch方法打上断点追踪,最后在org.springframework.format.datetime.DateFormatter类中找到默认定义的值

springboot中日期格式转换问题springboot中日期格式转换问题

原来根据locale创建的默认格式是"yyyy-MM-dd",记错格式了!