Java教程

解决Springboot中的日期解析错误

本文主要是介绍解决Springboot中的日期解析错误,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

错误信息:

error: Failed to parse Date value '2022-01-12 15:00:00': Cannot parse date "2022-01-12 15:00:00": while it seems to fit format 'yyyy-MM-dd'T'HH:mm:ss.SSSZ', parsing fails (leniency? null)

解决办法:

使用fastJson,在日期属性上添加 org.springframework.format.annotation.DateTimeFormat ---> @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")

com.fasterxml.jackson.annotation.JsonFormat ---> @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")

这篇关于解决Springboot中的日期解析错误的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!