SpringBoot处理日期格式化问题

Posted Firm陈

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot处理日期格式化问题相关的知识,希望对你有一定的参考价值。

在application.yml添加配置:

spring:
  #日期格式化配置
  jackson:
    date-format: yyyy-MM-dd hh:mm:ss #如果使用字符串表示,用这行设置格式
    timezone: GMT+08
    serialization:
      write-dates-as-timestamps: true #使用时间戳,使用数值timestamp表示日期

以上是关于SpringBoot处理日期格式化问题的主要内容,如果未能解决你的问题,请参考以下文章

Springboot 关于日期时间格式化处理方式总结

如何从我的 DatePicker 片段中传输格式化的日期字符串?

Springboot 关于日期时间格式化处理方式总结

springboot~统一处理日期请求参数java.utils.Date和java.time.LocalDate

SpringBoot处理日期转换问题

SpringBoot对接收及返回Instant类型的处理(转)