本文主要是介绍出现 Cannot deserialize value of type `java.time.LocalDateTime` from String 解决方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
目录
- 1. 问题所示
- 2. 原理分析
- 3. 解决方法
- 3.1 修改Json数据格式
- 3.2 @JsonFormat注解
- 3.3 更换格式
- 3.4 序列化和反序列化
1. 问题所示
执行功能模块的时候,后端(浏览器)弹出如下提示
JSON parse error: Cannot deserialize value of type `java.time.LocalDateTime` from String \"2024-06-06\": Failed to deserialize java.time.LocalDateTime: (java.time.format.DateTimeParseException) Text '2024-06-06' could not be parsed at index 10;
nested exception is com.fasterxml.jackson.databind.exc.InvalidFormatException: Cannot deserialize value of type
这篇关于出现 Cannot deserialize value of type `java.time.LocalDateTime` from String 解决方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!