即使连接参数正确,我也无法使用jdbc连接到本地数据库。 如果我尝试通过终端或某些客户端进行连接,则可以连接。
但是,如果我尝试连接到远程数据库,它将起作用
这是错误:
Connected to the target VM, address: '127.0.0.1:49986', transport: 'socket'
Exception in thread "main" 2019-04-15 12:16:55 FATAL AbstractConnectorDB - Unable to connect to database jdbc:mysql://localhost:3306/my_db?autoReconnect=true&useSSL=false
com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: Could not create connection to database server. Attempted reconnect 3 times. Giving up.
com.mycompany.database.relational.exceptions.ConnectionFailedException: Fatal error: Unable to connect to db jdbc:mysql://localhost:3306/my_db?autoReconnect=true&useSSL=false @root
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
...
... 17 more
Disconnected from the target VM, address: '127.0.0.1:49986', transport: 'socket'
可能是什么问题?
答案 0 :(得分:1)
是的,您的连接属性在PC上正确,但在VM上正确。请改用您PC的IP地址。
答案 1 :(得分:-1)
问题的根源是:我在POM中使用的是MySQL 5,但是我的计算机上有MySQL 8。
因此我从计算机上完全删除了MySQL,并安装了所需的版本