代码如下:
String url = "jdbc:mysql://######:3306/";
String db = "company?autoReconnect=true";
String driverName = "com.mysql.jdbc.Driver";
String userName = "root";
String password = "****";
try{
Class.forName(driverName);
}catch(Exception e){
System.out.println(e);
}
con = DriverManager.getConnection(url+db, userName, password);
getConnection这行报错,错误原因是:Could not create connection to database server,后面还有个异常是Communications link failure,请问该怎么办呢?
3 个解决方案
#1
#2
目测代码没问题,检查一下用户名、密码、端口号、权限等等。
#3
Communications link failure 大多是网络or防火墙问题
#1
#2
目测代码没问题,检查一下用户名、密码、端口号、权限等等。
#3
Communications link failure 大多是网络or防火墙问题