1. 程式人生 > >MySQL8.0使用注意事項

MySQL8.0使用注意事項

今天想使用MySQL做SSM,去官網發現更新到了8.0,就想用用,遇到了好多坑

下面是8.0和5.6,5.7的區別:

  • jdbc配置檔案修改
  • MySQL連線jar修改
  • 出現Connections could not be acquired from the underlying database!錯誤

jdbc配置檔案修改

mysql.driver_class=com.mysql.cj.jdbc.Driver
mysql.connection.url=jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=Hongkong
mysql.connection
.username=root mysql.connection.password=root

MySQL連線jar修改

出現Connections could not be acquired from the underlying database!錯誤

如果還用5.6和5.7的配置資訊,就會出現這個錯誤,把上面兩個修改了這個錯誤就沒了。