MySql 8.0 对应驱动包匹配
MySql 数据库更新为8.0及以上后,对应的应用程序数据库链接驱动包也要更新为8.0版本。否则会报驱动异常。
需要注意以下几点:
1.最新驱动包Maven下载配置如下:
1
2
3
4
5
|
< dependency >
< groupId >mysql</ groupId >
< artifactId >mysql-connector-java</ artifactId >
< version >8.0.11</ version >
</ dependency >
|
2.JDBC配置表更新如下:
以前版本
1
2
3
4
|
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://xxx.xx.xx.xxx:3306/db?characterEncoding=utf-8
jdbc.username=root
jdbc. password =admin
|
现在版本
- jdbc.driver=com.mysql.cj.jdbc.Driver
- jdbc.url=jdbc:mysql://xxx.xx.xx.xxx:3306/db?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=GMT%2B8
- jdbc.username=root
- jdbc.password=ad
注意红色部分,这个就是要改动的地方。之后就能使用8.0版本的MySql了。
MySql 8.0版本驱动更换
MySQL8.0版本需要更换驱动为“com.mysql.cj.jdbc.Driver”,之前的“com.mysql.jdbc.Driver”已经不能在MySQL 8.0版本使用了,官方文档链接:https://dev.mysql.com/doc/connector-j/8.0/en/connector-j-api-changes.html;
另外mysql-connector-java也推荐更新到8.0的版本(https://dev.mysql.com/downloads/connector/j/)。
综上修改以下两点:
1.更新mysql-connector-java版本:
1
2
3
4
5
6
|
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
< dependency >
< groupId >mysql</ groupId >
< artifactId >mysql-connector-java</ artifactId >
< version >8.0.11</ version >
</ dependency >
|
2.更换驱动:
1
2
|
<jdbcConnection driverClass= "com.mysql.cj.jdbc.Driver" connectionURL= "jdbc:mysql://127.0.0.1:3306/test?
useUnicode=true&characterEncoding=utf-8&useSSL=false" userId= "root" password = "root" />
|
以上为个人经验,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/lizhengyu891231/article/details/88597664