使用 jdbc 连接 mysql 数据库

时间:2020-12-16 13:10:15

好久没有使用原生的 jdbc 来连接数据库了,之前一直使用ssh框架,感觉手生了好多,唉,不复习真的什么都忘了。

首先要准备连接的四个必须的字符串,分别是 jdbcUrl、driverClass、user、pasword,我习惯在类路径下建一个db.properties 文件来保存这四个字符串,在连接时从这个properties 文件中读取,这样使用配置的方式可以轻松的切换到其他的数据库,比如 oracle之类的。

db.properties 文件内容如下:

driver=com.mysql.jdbc.Driver
jdbcUrl=jdbc:mysql://localhost:3306/test
user=root
password=340818
然后在 getConnection 方法中,先使用流的方式读取类路径下这个 properties 文件,将连数据库的条件装配上,代码如下:

// 读取类路径下的 jdbc.properties 文件
InputStream in = JDBCUtils.class.getClassLoader().getResourceAsStream(
"jdbc.properties");
Properties properties = new Properties();
properties.load(in);

driverClass = properties.getProperty("driver");
jdbcUrl = properties.getProperty("jdbcUrl");
user = properties.getProperty("user");
password = properties.getProperty("password");
后面就是正常的连接数据库代码了:

Driver driver = (Driver) Class.forName(driverClass).newInstance();
Properties info = new Properties();
info.put("user", user);
info.put("password", password);
Connection connection = driver.connect(jdbcUrl, info);