我正在努力让我的数据库与我的Java程序对话。

有人能给我一个使用JDBC的快速而简单的示例程序吗?

我得到了一个相当大的错误

Exception in thread "main" 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.
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at com.mysql.jdbc.Util.handleNewInstance(Util.java:409)
    at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1122)
    at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2260)
    at com.mysql.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:787)
    at com.mysql.jdbc.JDBC4Connection.<init>(JDBC4Connection.java:49)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at com.mysql.jdbc.Util.handleNewInstance(Util.java:409)
    at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:357)
    at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:285)
    at java.sql.DriverManager.getConnection(DriverManager.java:582)
    at java.sql.DriverManager.getConnection(DriverManager.java:207)
    at SqlTest.main(SqlTest.java:22)
Caused by: 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.
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at com.mysql.jdbc.Util.handleNewInstance(Util.java:409)
    at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1122)
    at com.mysql.jdbc.MysqlIO.<init>(MysqlIO.java:344)
    at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2181)
    ... 12 more
Caused by: java.net.ConnectException: Connection refused
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
    at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:432)
    at java.net.Socket.connect(Socket.java:529)
    at java.net.Socket.connect(Socket.java:478)
    at java.net.Socket.<init>(Socket.java:375)
    at java.net.Socket.<init>(Socket.java:218)
    at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:256)
    at com.mysql.jdbc.MysqlIO.<init>(MysqlIO.java:293)
    ... 13 more

测试文件内容:

import com.mysql.jdbc.*;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;

public class SqlTest {

    public static void main(String [] args) throws Exception {
        // Class.forName( "com.mysql.jdbc.Driver" ); // do this in init
        // // edit the jdbc url 
        Connection conn = DriverManager.getConnection( 
            "jdbc:mysql://localhost:3306/projects?user=user1&password=123");
        // Statement st = conn.createStatement();
        // ResultSet rs = st.executeQuery( "select * from table" );

        System.out.println("Connected?");
    }
}

下载MySQL-JDBC-Type-4-Treiber (i.g。Mysql -connector-java-5.1.11-bin.jar从Mysql -connector-java-5.1.11.zip)

在编译和运行时期间,您需要在类路径中包含驱动程序jar。

Class.forName( "com.mysql.jdbc.Driver" ); // do this in init
// edit the jdbc url 
Connection conn = DriverManager.getConnection( "jdbc:mysql://MyDbComputerNameOrIP:3306/myDatabaseName", username, password );
Statement st = conn.createStatement();
ResultSet rs = st.executeQuery( "select * from table" );

我可能找错了对象,但您的异常似乎表明您的MySQL服务器不可用。

线程main中出现异常: 日志含义通信链路故障最后一个成功发送到服务器的报文为0 毫秒前。驱动未收到服务器的报文。处理步骤在…

如果你尝试(从终端)会发生什么?

mysql -u username -p

系统将提示您输入与用户名关联的密码。在你给出正确的密码后,mysql客户端连接吗?

如果没有,你可能需要从首选项启动MySQL。您还可以将其设置为在启动时运行。


你有一个

com.mysql.jdbc.exceptions.jdbc4。CommunicationsException:通信链路故障 connectexception:拒绝连接

我引用了这个答案,其中还包含一个循序渐进的MySQL+JDBC教程:

If you get a SQLException: Connection refused or Connection timed out or a MySQL specific CommunicationsException: Communications link failure, then it means that the DB isn't reachable at all. This can have one or more of the following causes: IP address or hostname in JDBC URL is wrong. Hostname in JDBC URL is not recognized by local DNS server. Port number is missing or wrong in JDBC URL. DB server is down. DB server doesn't accept TCP/IP connections. DB server has run out of connections. Something in between Java and DB is blocking connections, e.g. a firewall or proxy. To solve the one or the other, follow the following advices: Verify and test them with ping. Refresh DNS or use IP address in JDBC URL instead. Verify it based on my.cnf of MySQL DB. Start the DB. Verify if mysqld is started without the --skip-networking option. Restart the DB and fix your code accordingly that it closes connections in finally. Disable firewall and/or configure firewall/proxy to allow/forward the port.

参见:

我应该如何连接到JDBC数据库/数据源在一个基于servlet的应用程序? 在多线程系统中使用静态java.sql.Connection实例安全吗?


我得到了同样的错误,因为我试图运行我的程序没有启动mysql服务器。

启动mysql服务器后,一切正常。


刚刚经历过。

必须做到: (这可以放在静态块初始化器中)

static{ // would have to be surrounded by try catch
    Class.forName("com.mysql.jdbc.Driver");   // this will load the class Driver
}

也可以通过以下方式获得连接:

conn = DriverManager.getConnection(DBURL,<username>,<password>);

而不是指定登录参数

  Connection conn = DriverManager.getConnection( "jdbc:mysql://localhost:3306/projects?user=user1&password=123");

的问候。


当Java出堆时,我捕捉到这个异常。如果我试图在RAM中放入许多数据项-首先我捕捉到“通信链路故障”,然后是“OutOfMemoryError”。

我记录了它,我减少了内存消耗(删除1/2数据),一切都好。


在我的例子中,我需要将Localhost替换为实际的数据库服务器IP地址

而不是

 Connection con = DriverManager.getConnection(
 "jdbc:mysql://localhost:3306/DBname", "root", "root");

我需要

 Connection con = DriverManager.getConnection(
 "jdbc:mysql://192.100.0.000:3306/DBname", "root", "root");

我也遇到过同样的问题,我是这样解决的:

中的.jsp调用了尚未定义的属性 servlet。 我有两个列名,我通过ResultSet (getString("columnName"))传递到一个对象,这与我的数据库中的列名不匹配。

我不太确定哪一个解决了这个问题,但它确实有效。另外,请确保为每个表查询创建了一个新的Statement和ResultSet。


请更新/etc/mysql/my.cnf文件中的IP地址

bind-address  = 0.0.0.0

重新启动mysql daemon和mysql服务。


我同样的问题是通过以下步骤解决的:

访问my.cnf vi /etc/mysql/my.cnf 修改其bind-address "bind-address = 0.0.0.0" 重新启动MySQL sudo /etc/init.d / mysql重启


这可能是一个简单的罐子问题。可能您正在使用旧的mysql-connector-java- xxx -bin.jar,它不支持您当前的mysql版本。我使用mysql-connector-java-5.1.18-bin.jar,因为我使用mysql 5.5,这个问题为我解决了。


如果您使用WAMP或XAMP服务器安装mysql数据库。 然后你必须显式启动mysql服务器,否则它会显示 com.mysql.jdbc.exceptions.jdbc4。CommunicationsException:连接数据库时通信链路故障


如果您更改了端口,则会得到这种错误"com.mysql.jdbc.exceptions.jdbc4 "。CommunicationsException:通信链路故障 请检查你的端口号


这com.mysql.jdbc.exceptions.jdbc4。如果数据库连接长时间空闲,将发生CommunicationsException异常。

这个空闲连接在connection. isclosed()上返回true;但如果我们尝试执行语句,它就会触发这个异常,所以我建议使用数据库池。


我用一种简单的方法解决了这个问题,这对我很有用。我遇到了一些问题"com.mysql.jdbc.exceptions.jdbc4。CommunicationsException:通信链路故障”。在我的数据库里。属性文件我有这个:url:jdbc:mysql://localhost:90/myDB 只删除了端口url,导致这种方式url:jdbc:mysql://localhost/myDB,这对我来说是有效的。


同样的问题我已经困扰好几个小时了。我正在使用MAMP服务器

而不是使用localhost:[Apache端口],使用您的MySQL端口。

下面是MAMP服务器默认的MySQL端口。

String url = "jdbc:mysql://localhost:8889/db_name";

Connection conn = DriverManager.getConnection(url, dbUsername, dbPassword);

当我在my.ini和php.ini文件中将mysql端口从3306更改为3307时,就发生了这种情况,但在更改端口(3307->3306)后,它又可以正常工作了。


在我的情况下,原来是mysql-connector-java的版本太旧了。

在我的演示中,我像这样使用mysql-connector-java:

<dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
    <version>5.1.9</version>
</dependency>

但是在开发环境中,我使用这个:

<dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
    <version>5.1.31</version>
</dependency>

我的MySQL版本是5.1.48(是的,它是旧的,只是为了模仿产品版本)。所以我遇到了同样的错误。

既然找到了原因,解决办法也就找到了。匹配版本!


前面的答案是合适的。但是,我还想指出一个更普遍的问题。

我也遇到过类似的问题,原因是我所在公司的网络限制。

当我在任何其他网络时,同样的连接都是成功的。


如果有任何读者在访问远程服务器时遇到此问题:请确保端口是打开的


尝试将localhost更改为127.0.0.1。

本地主机将被解析为::1。MySQL默认不支持IPv6连接。

下面是telnet localhost 3306的输出:

$ telnet localhost 3306
Trying ::1...

MySQL服务器没有响应。

当然,请确保您的MySQL服务器正在运行。


也许你没有启动你的Mysql和Apache服务器。我从XAMPP控制面板启动Apache服务器和Mysql后,连接成功建立。

好运!


我解决了两件事: 1. 使用以下connads创建非root的新用户:

CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON *.* TO 'newuser'@'localhost';
FLUSH PRIVILEGES;

2. 注释mysqld.conf中的IP地址行

然后用新的用户名和密码连接。它应该会起作用。


这是试图连接到旧版本的MySQL ('version', '5.1.73') ); 当您使用较新的驱动程序版本时,您会得到一个错误,告诉您使用“com.mysql. jdbc. jdbc”。甚至你不需要指定你使用的是哪个驱动程序:

加载类com.mysql.jdbc.Driver'。这是不赞成的。新 驱动类iscom.mysql.cj.jdbc.Driver'。司机是 通过SPI自动注册和手动加载驱动程序 类通常是不必要的。

我改变了声明,使用5.1.38版本的mysql-connector-java,在代码中,我保留了com.mysql.jdbc.Driver。

<dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
    <version>5.1.38</version>
</dependency>

一切都始于我看到安基特耆那教的答案


我的防火墙阻止了我的MySQL监听的3307帖子。所以我把端口从3307改成了3306。然后我就可以成功地连接到数据库。


在我的MacBook中,只有重新安装新版本的eclipse EE并删除xamp、mysql或mamp等本地服务器,但只使用其中一个时,我才解决了这个错误…


我刚开始申请的时候也遇到过同样的问题,

Caused by: 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.

问题是在mysql文件/etc/mysql/mysql.conf.d/mysqld.cnf中,配置是这样的

[mysqld]
pid-file        = /var/run/mysqld/mysqld.pid
socket          = /var/run/mysqld/mysqld.sock
datadir         = /var/lib/mysql
log-error       = /var/log/mysql/error.log
# By default we only accept connections from localhost
bind-address    = 127.0.0.1
# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0

所以我们可以看到,绑定地址是指向127.0.0.1,所以启动你的应用程序,一个简单的解决方案是,我们可以使用jdbc:mysql://127.0.0.1:3306/pizzeria,而不是jdbc:mysql://localhost:3306/pizzeria,将mysql连接到应用程序或另一个解决方案是,你可以检查和改变mysql配置为默认值。两种方案都可行。 我希望这对你们也有用。


用于远程调用Mysql

Add remote user to Mysql from for exemple IP=remoteIP : mysql -u xxxx -p //local coonection to mysql mysql> GRANT ALL PRIVILEGES ON *.* TO 'theNewUser'@'remoteIP' IDENTIFIED BY 'passWord'; //Query OK, 0 rows affected (xx sec) mysql> FLUSH PRIVILEGES; //Query OK, 0 rows affected Allow remote access to Mysql (by default all externall call is not allowed): Edit /etc/mysql/mysql.conf.d/mysqld.cnf or /etc/mysql/my.cnf Change line: bind-address = 127.0.0.1 to bind-address = 0.0.0.0 Restart Mysql: /etc/init.d/mysql restart For The latest version of JDBC Driver, the JDBC : jdbc.url='jdbc:mysql://remoteIP:3306/yourDbInstance?autoReconnect=true&amp;useUnicode=true&amp;useJDBCCompliantTimezoneShift=true&amp;useLegacyDatetimeCode=false&amp;serverTimezone=UTC' jdbc.user='theNewUser'


打开文件/etc/mysql/my.cnf: 更改以下参数为

' bind-address = 127.0.0.1

to

Bind-address = 0.0.0.0 #允许所有系统连接

在mysql中针对特定的IP地址执行以下命令->

grant all privileges on dbname.* to dbusername@'192.168.0.3' IDENTIFIED BY 'dbpassword';                      

如果你想访问所有的IP地址,运行下面的命令:

grant all privileges on dbname.* to dbusername@'%' IDENTIFIED BY 'dbpassword'; 

在我的情况下,我必须建立一个ssh隧道到远程数据库,所有的设置都是正确的,测试与PhpStorm的连接也很成功。模式加载了,但数据不加载。相反,我得到的是:

[08S01] 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.

上面的建议都没用。出于任何原因,我试图通过简单地重新启动PhpStorm来解决问题,瞧,它工作了!


此外,您的服务器可能刚刚关闭。在Mac上,通过聚光灯导航到mySQL首选项面板。在那里,勾选复选框以在计算机启动时启动服务器并启动服务器。


我收到了多个错误,如:

CommunicationsException:通信链路故障 java.lang.NullPointerException:尝试在空对象引用上调用接口方法'java.sql.Statement java.sql.Connection.createStatement()'。

我必须补充一句:

在AndroidManifest.xml中包含<uses-permission android:name="android.permission. xml "。INTERNET"/>就在开始清单标签之后。 将JDBC驱动程序添加到您的Gradle(或Maven)依赖项中。


我有同样的连接错误: 我的问题是我使用MySQL 8.0.15,但Java连接器是5.x.x。

下面是我如何修复它。 1. 下载8.0.15。从Maven存储库: https://search.maven.org/search?q=g:mysql%20AND%20a:mysql-connector-java

在Eclipse IDE中,在资源管理器中选择“引用库” 鼠标右键>生成路径>配置生成路径 A.删除“mysql-connector-5.x.jar” b.单击“Add External JARs…”,选择“mysql-connector-java-8.0.15.jar”。

重新运行,问题就解决了。


dbhost=jdbc:mysql://172.18.23.100:3306/yourdatabase?useUnicode=yes&characterEncoding=UTF-8&useSSL=false
user=root
password=Password#321

con = DriverManager.getConnection(dbhost, user, password);

如果mysql版本8或更高的用户更新连接器


如果Java试图通过SSL连接MySQL,但出现了错误,也可能发生此错误。(在我的例子中,我将Payara Server 5.193.1连接池配置为MySQL。)

有人建议设置useSSL=false。但是,由于Connector/J版本8.0.13,该设置已弃用。下面是MySQL连接器/J 8.0配置属性的摘录:

sslMode By default, network connections are SSL encrypted; this property permits secure connections to be turned off, or a different levels of security to be chosen. The following values are allowed: DISABLED - Establish unencrypted connections; PREFERRED - (default) Establish encrypted connections if the server enabled them, otherwise fall back to unencrypted connections; REQUIRED - Establish secure connections if the server enabled them, fail otherwise; VERIFY_CA - Like REQUIRED but additionally verify the server TLS certificate against the configured Certificate Authority (CA) certificates; VERIFY_IDENTITY - Like VERIFY_CA, but additionally verify that the server certificate matches the host to which the connection is attempted. This property replaced the deprecated legacy properties useSSL, requireSSL, and verifyServerCertificate, which are still accepted but translated into a value for sslMode if sslMode is not explicitly set: useSSL=false is translated to sslMode=DISABLED; {"useSSL=true", "requireSSL=false", "verifyServerCertificate=false"} is translated to sslMode=PREFERRED; {"useSSL=true", "requireSSL=true", "verifyServerCertificate=false"} is translated to sslMode=REQUIRED; {"useSSL=true" AND "verifyServerCertificate=true"} is translated to sslMode=VERIFY_CA. There is no equivalent legacy settings for sslMode=VERIFY_IDENTITY. Note that, for ALL server versions, the default setting of sslMode is PREFERRED, and it is equivalent to the legacy settings of useSSL=true, requireSSL=false, and verifyServerCertificate=false, which are different from their default settings for Connector/J 8.0.12 and earlier in some situations. Applications that continue to use the legacy properties and rely on their old default settings should be reviewed. The legacy properties are ignored if sslMode is set explicitly. If none of sslMode or useSSL is set explicitly, the default setting of sslMode=PREFERRED applies. Default: PREFERRED Since version: 8.0.13

因此,在我的例子中,设置sslMode=DISABLED就是解决这个问题所需要的全部内容。 这是在一台测试机器上。但是对于生产环境,安全解决方案应该正确配置Java客户机和MySQL服务器以使用SSL。


注意,通过禁用SSL,您可能还必须设置allowPublicKeyRetrieval=true。(同样,从安全角度来看,这不是一个明智的决定)。进一步的信息提供在MySQL ConnectionString选项:

AllowPublicKeyRetrieval If the user account uses sha256_password authentication, the password must be protected during transmission; TLS is the preferred mechanism for this, but if it is not available then RSA public key encryption will be used. To specify the server’s RSA public key, use the ServerRSAPublicKeyFile connection string setting, or set AllowPublicKeyRetrieval=True to allow the client to automatically request the public key from the server. Note that AllowPublicKeyRetrieval=True could allow a malicious proxy to perform a MITM attack to get the plaintext password, so it is False by default and must be explicitly enabled.


示例jdbc连接类文件。当你想要获得一个连接时,简单地调用getConnection方法。包含相关的mysql-connector.jar

import java.sql.Connection;
import java.sql.DriverManager;


public class DBConnection {

    public Connection getConnection() {
        Connection con = null;

        String dbhost;
        String user;
        String password;
// get properties
dbhost="jdbc:mysql://localhost:3306/cardmaildb";
user="root";
password="123";

 System.out.println("S=======db Connecting======");

        try {
            Class.forName("com.mysql.jdbc.Driver");

            con = DriverManager.getConnection(dbhost, user, password);
            //if you are facing with SSl issue please try this 
            //con = DriverManager.getConnection("jdbc:mysql://192.168.23.100:3306/cardmaildb?useUnicode=yes&characterEncoding=UTF-8&useSSL=false",user, password);

        } catch (Exception e) {
            System.err.println("error in connection");
            e.printStackTrace();
        }
        System.out.println("E=======db Connecting======");
        return con;
    }

    public static void main(String[] args) {
        new DBConnection().getConnection();
    }
}

在我的例子中,当我试图从同一个主机连接到运行在Ubuntu主机虚拟机容器中的mysql-server时,我遇到了这个错误。

例子: 如果我的虚拟机名称是abc.company.com,下面的jdbc URL将不起作用:

jdbc: mysql: / / abc.company.com: 3306 / dbname

上面的jdbc url可以在其他机器上正常工作,如xyz.company.com,但不是abc.company.com。

下面的jdbc URL可以在abc.company.com的机器上正常工作:

jdbc: mysql: / / localhost: 3306 / dbname

这让我检查了/etc/hosts文件。

添加以下行到/etc/hosts可以修复此问题:

127.0.1.1 ABC

这似乎是一个操作系统错误,需要我们在一些Ubuntu版本上添加这些。 参考:https://www.debian.org/doc/manuals/debian-reference/ch05.en.html # _the_hostname_resolution

在尝试这个之前,我已经尝试了所有其他的解决方案,如GRANT all ..,修改mysql.cnf中的绑定地址行。在这件事上他们都没帮上忙。


在我的例子中,原来是mysql-connector-java的版本不同。 我刚把mysql jdbc改为maria jbdc

旧的jdbc驱动程序

<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
<dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
    <version>8.0.21</version>
</dependency>


新的Jdbc驱动程序

<!-- https://mvnrepository.com/artifact/org.mariadb.jdbc/mariadb-java-client -->
<dependency>
    <groupId>org.mariadb.jdbc</groupId>
    <artifactId>mariadb-java-client</artifactId>
    <version>2.6.2</version>
</dependency>


这个问题有很多答案,我认为我的答案更适合另一个问题,但那个问题的答案是锁定的。它指向这个线程。

解决这个问题的方法是在application.properties中将&createDatabaseIfNotExist=true附加到spring.datasource.url字符串中。

这是非常棘手的,因为它表现为几个不同的、奇怪的、看似不相关的错误,当我试图修复它所抱怨的东西时,它只是弹出另一个错误,或者错误是不可能修复的。它抱怨无法加载JDBC,说它不在类路径中,但我以大约30种不同的方式将它添加到类路径中,并且已经是facedesking了。


我通过降低jdk版本来解决这个问题。 从11.0.11降级到11.0.10或更老的java版本


我在远程Jenkins服务器上运行自动化测试时遇到了这个问题。但是,在本地运行测试时,没有出现任何问题。

对我来说,这个问题是在将MySQL连接器版本更新到POM文件中的最新版本后解决的,因为MySQL版本在服务器端发生了更改。

<dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
    <version>8.0.24</version>
</dependency>

但是调试同样有点困难,花了差不多两天时间,因为我不知道MySQL版本的变化,它在本地工作得很好。


在我的案例中,解决方案是将预期的TLS协议添加到连接字符串中,如下所示:

jdbc:mysql://localhost:3306/database_name?enabledTLSProtocols=TLSv1.2

出于测试/开发的目的(不推荐用于生产),您还可以尝试:

jdbc:mysql://localhost:3306/database_name?useSSL=false&allowPublicKeyRetrieval=true

这个问题是从xampp端口创建的。首先你应该确认你的端口号。基本上,每个人都尝试使用3306,但有时会出错。 您可以尝试jdbc:mysql://127.0.0.1:3307


请使用平台独立zip或tar,它为我工作时遇到这个错误。

https://dev.mysql.com/downloads/connector/j/?os=26


添加这个 useSSL = false&allowPublicKeyRetrieval = true

jdbc: mysql: / / localhost: 3306 / cloudapp吗?useSSL = false&allowPublicKeyRetrieval = true

https://youtu.be/ray3YvnIohM


通常,当您使用的数据库在操作系统中关闭时,会出现此问题。如果你使用windows,那么进入服务,确保MySQL是启动位置。


在MySQL Workbench中,有一种非常特殊的情况会发生这种问题,特别是在使用Eclipse JPA和本地主机下的持久性时。问题是,正如在其他一些回答中提到的,MySQL服务器在创建连接时可以非常严格地使用localhost, 0.0.0.0.1或127.0.0.1。为了克服这个问题,在(Windows)中的hosts文件:

C:\Windows\System32\drivers\etc

需要为主连接(例如myserver)添加以下条目:

#我的数据库服务器 127.0.0.1 myserver

如果没有添加到主机,那么每次尝试从127.0.0.1连接数据库时,连接都会失败


在我的情况下,我从intellij IDEA运行时得到这个错误,而从终端运行时。/gradlew bootRun工作正常。然后我发现Intellij指向的是我下载的一些liberica java。我把它改成了OpenJdk one,它开始工作得很好。


就我而言, 在连接字符串中添加查询参数解决了这个问题。 &useSSL = false

jdbc:mysql://${jdbc_url}:${jdbc_port}/${database_name}?serverTimezone=UTC&autoReconnect=true&useSSL=false&failOverReadOnly=false&maxReconnects=10


这也是MySQL正在消亡的原因。在我的例子中,我有一个查询触发了MySQL中的一个错误,所以每当执行查询时,服务器就会死机并重新启动。查看MySQL错误日志,看看是否发生了这种情况。 在我的例子中(MacOS上的Homebrew),它位于/usr/local/var/mysql/<machinename>.err

因为我是在一个测试系统上看到的,所以我最终放弃并重新创建了我的数据库,这解决了问题,但我不敢想象如果它是在生产系统上,我会做什么。


在我的例子中,我遇到了这个问题。当我试图通过IntelliJ Idea数据源连接到AWS RDS MySQL时,CommunicationsException:通信链路故障)。

这个视频帮助了我: https://www.youtube.com/watch?v=v3jH1YxJqaY