这是错误:
无databasecom.mysql.jdbc.exceptions.jdbc4.communicationsexception:通信链路故障
从服务器成功接收的最后一个数据包是1325毫秒前。最后一个成功发送到服务器的数据包是1316毫秒前。
这是我的密码:
try {
Class.forName("com.mysql.jdbc.Driver");
System.out.println("Connection Success");
} catch (ClassNotFoundException x) {
}
String url = "jdbc:mysql://127.0.0.1:3306/" + str + "?useSSL=true&verifyServerCertificate=true";
try {
DBConnection = (Connection) DriverManager.getConnection(url, "root", "coderofGod24");
System.out.println("Database Connected");
} catch (SQLException xe) {
System.out.println("No Database" + xe);
}
return DBConnection;
1条答案
按热度按时间wnavrhmk1#
解决方案:需要一个特定版本的mysql服务器。至于我,我需要mysql社区安装程序5.7.21