springboot日期格式完美解决

做项目时发生了日期格式问题,会报如下错误
JSON parse error: Cannot deserialize value of type java.util.Date from String
在properties或yml中加入如下代码即可,格式改成想要的即可

spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
spring.jackson.time-zone=GMT+8
spring.jackson.default-property-inclusion=non-null

你可能感兴趣的:(学习笔记)