码迷,mamicode.com
首页 > 数据库 > 详细

Mysql连接驱动8.0版本改动

时间:2020-05-27 20:54:54      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:项目启动会   rac   data   数据库   div   tomat   mysq   zed   ike   

mysql-connector-java.jar升级到8版本以后,驱动和连接地址的书写发生了一些改动,不然项目启动会进行报错

1、驱动类发生改变

由 com.mysql.jdbc.Driver 改为 com.mysql.cj.jdbc.Driver

以前的com.mysql.jdbc.Driver也还能用,不过会提交你使用新的驱动类,提示如下:

Loading class `com.mysql.jdbc.Driver‘. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver‘. The driver is 
automatically registered via the SPI and manual loading of the driver class is generally unnecessary.

 

 

2、数据库连接地址发生改动

spring.datasource.url=jdbc:mysql://localhost:3306/glxy

数据库连接地址上必须要指定时区(serverTimezone=GMT%2B8),不然会报如下错误:

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.

另外,在数据库连接地址上要需要额外指定字符编码(characterEncoding=utf8),如果不指定 like查询可能不会生效,明明有数据却无法查出

 

完整地址写法如下:

spring.datasource.url=jdbc:mysql://localhost:3306/glxy?serverTimezone=GMT%2B8&characterEncoding=utf8&useSSL=false&useUnicode=true

 

Mysql连接驱动8.0版本改动

标签:项目启动会   rac   data   数据库   div   tomat   mysq   zed   ike   

原文地址:https://www.cnblogs.com/gangbalei/p/12975860.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!