Failed to obtain JDBC Connection; nested exception is java.sql.SQLException


Failed to obtain JDBC Connection; nested exception is java.sql.SQLException: The server time zone value '�й���׼ʱ��' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the 'serverTimezone' configuration property) to use a more specifc time zone value if you want to utilize time zone support.

Caused by: java.sql.SQLException: The server time zone value=問題解決,由於使用了新版mysql等數據庫

解決:在jdbc連接的url后面添加serverTimezone=CST
例如:

jdbc:mysql://localhost:3306/demo改為
jdbc:mysql://localhost:3306/demo?serverTimezone=CST
原因:使用mysql的jdbc驅動最新版(6.0+)時,會遇到數據庫和系統時區差異引起的問題。

注:CST代表的是中國上海時間(與北京時間,東八區相同)。

改后:
spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
username: root
password: 1234
url: jdbc:mysql://localhost:3306/mydatabase?serverTimezone=CST&useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&useSSL=true


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM