SpringBoot 使用 jackson 格式化时间

SpringBoot 使用 jackson 格式化时间

application.yml或者properties中修改默认配置

yml

spring: 
    jackson: 
        date-format: yyyy/MM/dd
        timezone: GMT+8

properties

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

Bean

@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")


SpringBoot 使用 jackson 格式化时间
https://shikai.info/archives/springboot-use-jackson-formatting-time
作者
石 凯
发布于
2023年07月30日
许可协议