SpringBoot 技巧
1. 常用问题
1.1 数据库显示写入时间 create_time 比 实际时间慢8小时
SpringBoot 使用 LocalDateTime进行写入 发现时间慢了8小时
其他项目写入是正常的
经查看发现数据库连接为
url: jdbc:p6spy:mysql://localhost:3306/ipc?characterEncoding=utf8&useSSL=false&serverTimezone=UTC&rewriteBatchedStatements=true
需要将serverTimezone 从UTC改成 Asia/Shanghai,问题得以解决
url: jdbc:p6spy:mysql://localhost:3306/ipc?characterEncoding=utf8&useSSL=false&serverTimezone=Asia/Shanghai&rewriteBatchedStatements=true
本作品采用《CC 协议》,转载必须注明作者和本文链接