关于mysql8驱动url链接问题

最近在项目中更换mysql数据库,由原来的5.x.x版本换为8.x.x版本。

由于项目启动时,需自动创建表。但是在检查时,对于已有的表还是执行了创建SQL。导致报错如下:

原链接串使用:

“useUnicode=true&characterEncoding=utf8&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC”

后查询mysql驱动更新信息发现:

意思就是说:nullCatalogMeansCurrent属性在8.x.x之前默认值为true.现属性为false.

更改后连接串:

“useUnicode=true&characterEncoding=utf8&nullCatalogMeansCurrent=true&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC”

此变动对于一些自动生成工具类可能都有影响。如:生成mapper文件。

在此记录下。

 

 

你可能感兴趣的:(关于mysql8驱动url链接问题)