作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
我在使用 intellij idea 15 的项目上工作,所以当我尝试连接到数据库时出现此错误
No suitable driver found for jdbc:mysql://localhost:3306/egov
这是我的数据源文件
public class DataSource {
private String url;
private String login;
private String password;
private Connection connection;
private Properties properties;
private static DataSource instance;
private DataSource() {
try {
properties = new Properties();
properties.load(new FileInputStream(new File("configuration.properties")));
url = properties.getProperty("url");
login = properties.getProperty("login");
password = properties.getProperty("password");
connection = DriverManager.getConnection(url, login, password);
} catch (SQLException | IOException ex) {
System.out.println(ex.getMessage());
}
}
public Connection getConnection() {
return connection;
}
public static DataSource getInstance() {
if (instance == null) {
instance = new DataSource();
}
return instance;
}
}
这是configuration.properties文件
url=jdbc:mysql://localhost:3306/egov
login=root
password=
我还添加了 jar 文件 mysql-connector-java任何人都知道如何解决这个问题
这个问题在这里已经有了答案: Connect Java to a MySQL database (14 个答案) 关闭 7 年前。 我在使用 intellij idea 15 的项目上工作,所以当我
我是一名优秀的程序员,十分优秀!