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 協議》,轉載必須註明作者和本文連結