在使用JDBC连接mysql时可能会遇到以下错误:
com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server
解决方法:
将
com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server
sulotions:
You need add target IP to your hosts file and name it.
make String url = "jdbc:mysql://192.168.xxx.xxx:3306/db"; be String url = "jdbc:mysql://hostname:3306/db";
example: