美文网首页
MySQL查出时间比实际晚8小时的解决方案

MySQL查出时间比实际晚8小时的解决方案

作者: JavaEdge | 来源:发表于2024-04-25 22:21 被阅读0次

    查询出来的日期数据比数据库中日期数据晚8小时,一开始很懵逼,IDEA 和 server 时区都一样呢!后来发现:

    jdbcUrl=jdbc:mysql://localhost:hentai?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC&useSSL=false
    

    serverTimezone=UTC参数出问题,改成serverTimezone=Asia/Shanghai即可!

    本文由博客一文多发平台 OpenWrite 发布!

    相关文章

      网友评论

          本文标题:MySQL查出时间比实际晚8小时的解决方案

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