springboot 格式化返回日期
Posted 黄光跃
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot 格式化返回日期相关的知识,希望对你有一定的参考价值。
1,可以在 pojo 类每个属性添加 @JsonFrormat(pattern="yyyy-MM-dd HH:mm:ss", @timeZone="GMT+8") 注解
2,可以在配置文件中全局指定
spring.jackson.date-format=yyyy-MM-dd
spring.jackson.time-zone=GMT+8
spring.jackson.serialization.write-dates-as-timestamps=false
第一行设置格式:yyyy-MM-dd HH:mm:ss
第二行设置时区
第三行表示不返回时间戳,如果为 true 返回时间戳,如果这三行同时存在,以第三行为准即返回时间戳
以上是关于springboot 格式化返回日期的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot 项目 返回时间 日期格式不正确 解决办法
SpringBoot 项目 返回时间 日期格式不正确 解决办法
SpringBoot 项目 返回时间 日期格式不正确 解决办法