赞
踩
最近使用spring boot 写项目的时候遇到警告,强迫症啊,动手解决一下。
com.mysql.jdbc.Driver,已弃用。新类是com.mysql.cj.jdbc.Driver,建议换成新类。
原因:比较喜欢新东西,mysql驱动太新了,数据库是5.7.25,驱动 8.0.15
<properties>
<java.version>1.8</java.version>
<mybatis-spring-boot>2.0.1</mybatis-spring-boot>
<mysql-connector>8.0.15</mysql-connector>
</properties>
解决:哪旧换哪,要么还原成旧版本,要么全要新的
## 数据源配置
spring.datasource.url=jdbc:mysql://localhost:3306/mall?useUnicode=true&characterEncoding=utf8
spring.datasource.username=root
spring.datasource.password=******
## spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
解决了吗?也许没有。
当我在测试端口的时候又来事了,驱动太新,数据库时间服务没有统一。
java.sql.SQLException: The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more than one time zone.
解决:
## 数据源配置
## spring.datasource.url=jdbc:mysql://localhost:3306/mall?useUnicode=true&characterEncoding=utf8
spring.datasource.url=jdbc:mysql://localhost:3306/mall?useUnicode=true&characterEncoding=utf8&serverTimezone=GMT
spring.datasource.username=root
spring.datasource.password=******
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
ok;
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。