共计 637 个字符,预计需要花费 2 分钟才能阅读完成。
今天碰到一坑,特此记录环境 springboot2 mysql-connector-java 8.0.15 连接 mysql5.6 出现问题:
java.sql.SQLNonTransientConnectionException: Could not create connection to database server. Attempted reconnect 3 times. Giving up.
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:110) ~[mysql-connector-java-8.0.15.jar:8.0.15]
链接 url:
url: jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false
代码在其他机器上测试过的,确定是 mysql 版本引起的,搜了一下,各种各样的问题,最终都没有解决。
测试过程中发现加入了
&serverTimezone=GMT%2B8 即完整 url:
url: jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8
问题解决
正文完
发表至:无分类
2019-03-21