之前用的mysql8.0
重装成mysql5.7.28后
eclipse就连接不上了
jar包是:mysql-connector-java-5.1.34-bin.jar
这是测试代码
import java.sql.Connection;
import java.sql.DriverManager;
public class test1 {
public static void main(String[] args) {
String driver = "com.mysql.jdbc.Driver";
String URL = "jdbc:mysql://localhost:3306/testphone";
Connection con = null;
try
{
Class.forName(driver);
}
catch(java.lang.ClassNotFoundException e)
{
System.out.println("Connect Successfull.");
System.out.println("Cant't load Driver");
}
try
{
con=DriverManager.getConnection(URL,"root","123456");
System.out.println("Connect Successfull.");
}
catch(Exception e)
{
System.out.println("Connect fail:" + e.getMessage());
}
}
}
输出信息:
Connect fail:Access denied for user 'root'@'localhost' (using password: YES)
我用百度搜索过,这个问题,基本都是一个方法,就是skip-grant-tables,然后修改root的密码
但是我的数据库里有这个用户和密码
而且我用navicat能够连接数据库
求求大神看看