springboot配置返回时间戳

springboot2.0后,spring会将时间自动给转成UTC字符串了
springboot1.x版本的将date字段返回的是时间戳
配置返回时间戳

spring
  jackson:
    serialization:
      write-dates-as-timestamps: true

这里写图片描述

全局配置返回字符串

spring:
    jackson:
        date-format: yyyy-MM-dd HH:mm:ss
        time-zone: GMT+8

这里写图片描述

你可能感兴趣的:(Springboot,时间戳,utc字符串)