美文网首页
SpringBoot JsonDateFormat

SpringBoot JsonDateFormat

作者: LxjAzni丶7 | 来源:发表于2017-08-05 22:27 被阅读0次

第一步添加jackson依赖:


<dependency>
        <groupId>com.fasterxml.jackson.datatype</groupId>
        <artifactId>jackson-datatype-jsr310</artifactId>
        <version>2.9.0</version>
</dependency>

第二步编辑yml文件:

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

第三步在对应的实体类上的Get方法添加@JsonFormat注释:

@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    public Date getCreatedate() {
        return createdate;
    }
image.png

这样就完成啦!

相关文章

网友评论

      本文标题:SpringBoot JsonDateFormat

      本文链接:https://www.haomeiwen.com/subject/fvwwlxtx.html