sqlexception:拒绝用户'usiliateur1'@'localhost'的访问(使用密码:yes)

eulz3vhy  于 2021-06-26  发布在  Java
关注(0)|答案(1)|浏览(319)

这个问题在这里已经有答案了

java.sql.sqlexception:拒绝用户“root”@“localhost”的访问(使用密码:yes)(24个答案)
sqlexception:拒绝用户'whatever'@'localhost'的访问(5个答案)
拒绝访问用户“root”@“localhost”(使用密码:yes)(5个答案)
mysql错误1045(28000):拒绝用户'bill'@'localhost'的访问(使用密码:yes)(39个答案)
两天前关门了。

package com.exmaven2;

import java.sql.*;

public class MainApp 
{
    public static void main(String[] args) 
    {
        String url = "jdbc:mysql://localhost:3306/baseune"; 
        String userName = "utilisateur1";
        String password = "password";

        try { 
            java.sql.Connection con = DriverManager.getConnection(url, userName, password); 
        } catch (SQLException e) {
            e.printStackTrace();
        }   
    }
}

您好,我实际上正在尝试使用eclipseide中的maven项目构建来连接mysql。我写了这个代码,应该让我连接到我的服务器,但我得到了标题中描述的错误。我刚开始学习数据库和mysql,所以我真的不知道该怎么办。我已经检查了“利用率1”的特权(其他人发布了相同的问题,但这个答案对我不起作用),我都有,所以我不明白为什么它不起作用。

z2acfund

z2acfund1#

你能试试这个吗,

package com.exmaven2;

import java.sql.*;
public class MainApp 
{
    public static void main(String[] args) 
    {
        String url = "jdbc:mysql://localhost:3306/baseune?useSSL=false"; 
        String userName = "utilisateur1";
        String password = "password";

        try { 
            Connection con = DriverManager.getConnection(url, userName, password); 
        } catch (SQLException e) {
            e.printStackTrace();
        }   
    }
}

相关问题