美文网首页Spring-Boot
SpringBoot 中数据库与程序时间时区问题

SpringBoot 中数据库与程序时间时区问题

作者: 8e744d4a988c | 来源:发表于2019-02-14 00:29 被阅读3次

    在开发过程中遇到接口返回的时间和数据库时间不一致的问题,如图:


    时区不对,应该是2019-02-02

    application.properties 文件中加入以下配置即可解决:

    # 时区设置
    spring.jackson.time-zone=GMT+8
    
    时区正确了

    如果还需要配置时间格式,再加入:

    spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
    

    再看:


    时间格式也正确了

    这样就可以愉快的继续开发了~~

    相关文章

      网友评论

        本文标题:SpringBoot 中数据库与程序时间时区问题

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