config.properties连接mysql数据库具体用什么代码实现
时间: 2024-05-01 08:18:32 浏览: 203
你可以使用以下代码来实现config.properties连接mysql数据库:
```java
import java.io.InputStream;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.util.Properties;
public class MySQLConnector {
private static Connection connection = null;
public static Connection getConnection() {
if (connection != null) {
return connection;
} else {
try {
Properties props = new Properties();
InputStream inputStream = MySQLConnector.class.getClassLoader().getResourceAsStream("config.properties");
props.load(inputStream);
String driver = props.getProperty("MYSQL_DRIVER");
String url = props.getProperty("MYSQL_URL");
String user = props.getProperty("MYSQL_USER");
String password = props.getProperty("MYSQL_PASSWORD");
Class.forName(driver);
connection = DriverManager.getConnection(url, user, password);
} catch (SQLException | ClassNotFoundException e) {
e.printStackTrace();
}
return connection;
}
}
}
```
其中,config.properties 文件应该包含以下属性:
```
MYSQL_DRIVER=com.mysql.jdbc.Driver
MYSQL_URL=jdbc:mysql://localhost:3306/mydatabase
MYSQL_USER=root
MYSQL_PASSWORD=password
```
你可以根据你自己的数据库设置更改这些属性。
阅读全文