1.在進行jdbc與mysql鏈接的時候應注意,加載驅動的方式根據MySQL版本內容來講 有變化java
5.7版本以前:mysql
String driver= "com.mysql.jdbc.Driver"; String url="jdbc:mysql://localhost:3306/數據庫名字"; String user="數據庫用戶名"; String password="數據庫密碼";
5.7版本以後:sql
String driver= "com.mysql.cj.jdbc.Driver"; String url="jdbc:mysql://localhost:3306/dbnamel"; String user="數據庫用戶名"; String password="數據庫密碼";
注意標紅字體,加載驅動語句並不同數據庫
2. MySQL8.0版本以後,鏈接數據庫會有時區不一致的錯誤字體
錯誤信息:Error querying database. Cause: 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.url
此時的解決方法是:spa
在控制檯進入MySQLcode
輸入如下命令:server
show variables like '%time_zone%';blog
查看時區信息
而後輸入
set global time_zone='+8:00';
輸入exit退出,而後從新登入數據庫並輸入命令:
show variables like '%time_zone%';
此時時區問題就已經解決好了