配置Spring Boot返回日期格式为时间戳(Date自动转Long)

以下演示如何将Spring Boot返回的JSON数据中的Date类型自动转化为Long型时间戳,只需要两步:

时间戳(Long型)

pom.xml

<dependency>
    <groupId>com.fasterxml.jackson.datatypegroupId>
    <artifactId>jackson-datatype-jodaartifactId>
    <version>2.9.10version>
dependency>

application.properties

spring.jackson.serialization.write-dates-as-timestamps=true

自定义格式(yyyy-MM-dd HH:mm:ss)

如果想要转化为国内标准格式,只需要在application.properties添加特殊的配置即可,不需要额外引用jar包;

application.properties

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

序列化时过滤掉null值的字段

spring.jackson.default-property-inclusion=non_null

你可能感兴趣的:(Java,#,Spring)