com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: Could not create connection to database server. Attempted reconnect 3 times. Giving up.
com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure.
报错最后都指向
con = DriverManager.getConnection(url,user,password);
这一句
在网上查资料说要在url后面加 &autoReconnect=true 啊,改连接池属性啊之类的,发现都解决不了问题。
最后是参照 https://blog.csdn.net/baisedeqingting/article/details/78625078#commentsedit 这位博主的代码发现的问题。
解决问题参照 https://www.cnblogs.com/lyroge/p/3837902.html