https://blog.csdn.net/weixin_40845165/article/details/80780159
java.sql.SQLException: The server time zone value 'Öйú±ê׼ʱ¼ 解决方案
2018年06月23日 01:07:01 明哥l 阅读数:3756
版权声明:本文为明哥原创文章,未经博主允许不得转载 https://blog.csdn.net/weixin_40845165/article/details/80780159
使用Idea做jdbc的时候用了最新的mysql-connector-java-8.0.11库发现编码没有异常但是运行时出现了两个异常,如下
//第一个异常
Loadingclass`com.mysql.jdbc.Driver'.Thisisdeprecated.Thenewdriverclassis`com.mysql.cj.jdbc.Driver'.ThedriverisautomaticallyregisteredviatheSPIandmanualloadingofthedriverclassisgenerallyunnecessary.
意思是 mysqljdbc . driver被弃用了新的驱动类是“com.mysql.cjdbc.driver”。驱动程序通过SPI自动注册,而手动加载类通常是不必要的,解决方案如下:
//解决方法
把com.mysql.jdbc.Driver 改为com.mysql.cj.jdbc.Driver 即可
//第二个异常
java.sql.SQLException: The server time zone value'Öйú±ê׼ʱ¼ä'is unrecognized or represents more than one time
第二个异常是时区的错误,因此只你需要设置为你当前系统时区即可,解决方案如下:
//解决方案
staticfinalString DB_URL="jdbc:mysql://localhost:3306/csm"+"?serverTimezone=GMT%2B8";
//加上?serverTimezone=GMT%2B8" 即可 GMT%2B8代表: 东八区
//GMT%2B8代表: 东八区