【声明:】本文是作者(蘑菇v5)原创,版权归作者 蘑菇v5所有,侵权必究。本文首发在简书。如若转发,请注明作者和来源地址!未经授权,严禁私自转载!
第一个错误:
java.sql.SQLException: No suitable driver found for jdbc:mysql://localhost:3306/itat_shop
解决办法:
jsp
容器是本地运行的tomcat
,把jdbc
驱动文件mysql-connector-java-version-bin.jar
拷贝到tomcat
的lib
文件夹下,代码如下书写:
Class.forName("com.mysql.cj.jdbc.Driver").newInstance();
con = DriverManager.getConnection(url, username, password);
第二个错误:
Caused by: com.mysql.cj.exceptions.InvalidConnectionAttributeException: 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.
解决办法:
时区问题,在JDBC
的连接 url
部分加上 serverTimezone=UTC
即可
第三个错误:
com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
解决办法:
之前的url
最后有个useSSL=true
,mysql
高版本中新加的一个配置项,尝试将此配置去掉,再重启服务,问题解决,最终的url
如下所示:
String url = "jdbc:mysql://localhost:3306/itat_shop?
serverTimezone=UTC&characterEncoding=utf-8&useSSL=false";