package db; import java.sql.*; public class Shujuku { private static final String URL = "jdbc:mysql://localhost:3306/?db_student"; private static final String USERNAME = "root"; private static final String PASSWORD = "123456"; private static final String DRIVER_CLASS = "com.mysql.jdbc.Driver"; public void kk(){ try{ Class.forName(DRIVER_CLASS); Connection conn = DriverManager.getConnection(URL, USERNAME, PASSWORD); Statement statement=conn.createStatement(); System.out.println("已经成功连接到数据库!"); } catch (Exception e) { throw new RuntimeException(e); } }}优化
时间: 2024-03-25 07:36:42 浏览: 65
shujuku.zip_https//:shujuku.com
优化点:
1. 数据库连接信息应该封装到配置文件中,以便于修改和维护。
2. 数据库连接应该使用连接池进行管理,避免频繁创建和销毁连接对象。
3. 应该使用 PreparedStatement 对象执行 SQL 语句,避免 SQL 注入攻击。
4. 避免在方法中抛出 RuntimeException 异常,应该捕获异常并进行处理。
下面是优化后的代码:
```
package db;
import java.io.InputStream;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.Properties;
import javax.sql.DataSource;
import com.alibaba.druid.pool.DruidDataSourceFactory;
public class DatabaseUtil {
private static DataSource ds;
static {
try {
InputStream is = DatabaseUtil.class.getClassLoader().getResourceAsStream("db.properties");
Properties props = new Properties();
props.load(is);
ds = DruidDataSourceFactory.createDataSource(props);
} catch (Exception e) {
throw new ExceptionInInitializerError(e);
}
}
public static Connection getConnection() throws SQLException {
return ds.getConnection();
}
public static void close(Connection conn, PreparedStatement ps, ResultSet rs) {
try {
if (rs != null) {
rs.close();
}
if (ps != null) {
ps.close();
}
if (conn != null) {
conn.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
}
}
```
```
package db;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
public class Shujuku {
public void kk() {
Connection conn = null;
PreparedStatement ps = null;
ResultSet rs = null;
try {
conn = DatabaseUtil.getConnection();
ps = conn.prepareStatement("select * from student");
rs = ps.executeQuery();
while (rs.next()) {
System.out.println(rs.getInt("id") + " " + rs.getString("name") + " " + rs.getInt("age"));
}
} catch (SQLException e) {
e.printStackTrace();
} finally {
DatabaseUtil.close(conn, ps, rs);
}
}
}
```
这里使用了阿里巴巴的 Druid 数据库连接池,可以在 Maven 中添加以下依赖项来获取:
```
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.2.4</version>
</dependency>
```
需要在类路径中添加 `db.properties` 配置文件,内容如下:
```
driverClassName=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/db_student
username=root
password=123456
initialSize=5
minIdle=5
maxActive=20
```
其中 `initialSize` 表示初始化连接数,`minIdle` 表示最小空闲连接数,`maxActive` 表示最大连接数。
阅读全文