SpringBoot +Thymeleaf 提交字符串日期类型 提示Failed to convert property value of type ‘java.lang.String‘
Posted 在奋斗的大道
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot +Thymeleaf 提交字符串日期类型 提示Failed to convert property value of type ‘java.lang.String‘相关的知识,希望对你有一定的参考价值。
SpringBoot + Thymeleaf 员工新增页面提交字符串日期类型,后台提示:Failed to convert property value of type 'java.lang.String' to required type 'java.util.Date'
解决办法:在实体类的属性上加上 @DateTimeFormat(pattern = "yyyy-MM-dd") 注解。
实例代码:
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date birthday;
以上是关于SpringBoot +Thymeleaf 提交字符串日期类型 提示Failed to convert property value of type ‘java.lang.String‘的主要内容,如果未能解决你的问题,请参考以下文章
Ajax GET 请求后表单提交失败(无效的 CSRF 令牌)。怎么修?
在邮递员上发布请求但不在浏览器中(代码状态:415) - Spring Boot,thymeleaf