关于MySQL8的URL和Driver的写法

1.旧版本,MySQL Connector/J 5.x 版本的连接方式:

url = jdbc:mysql://localhost:3306/user?useUnicode=true&characterEncoding=utf8
driver = com.mysql.jdbc.Driver

2、MySQL 8.x新版本,MySQL Connector/J 6.x之后 的连接方式:

url = jdbc:mysql://localhost:3306/user?serverTimezone=UTC&characterEncoding=utf8&useUnicode=true&useSSL=false
drive = com.mysql.cj.jdbc.Driver

注意:新版mysql驱动的url必须设置时区,即serverTimezone=UTC

你可能感兴趣的:(学习笔记)