gpt4 book ai didi

java - com.mysql.jdbc.Driver 异常

转载 作者:行者123 更新时间:2023-11-28 23:56:43 24 4
gpt4 key购买 nike

我正在尝试运行代码

public static Connection getConnection() throws SQLException{
try {
Class.forName("com.mysql.jdbc.Driver");
cn = DriverManager.getConnection("jdbc:mysql://localhost:3306/mysql?zeroDateTimeBehavior=convertToNull [root on Default schema]");
} catch (ClassNotFoundException | SQLException e) {
JOptionPane.showMessageDialog(null,e.toString());
}
return cn;
}

但我得到了异常(exception): enter image description here

对话框:

enter image description here

我在这个项目中添加了分隔符:mysql-connector-java-5.1.36-bin.jar。我做错了什么?

最佳答案

添加mysql connector jar 到您的项目类路径。

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

关于java - com.mysql.jdbc.Driver 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31492003/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com