JDBC工具类

抽取JDBC工具类

  • 目的:简化书写
  • 分析:使用JDBC连接数据库,查询表中的所有数据。
  1. 注册驱动
  2. 抽取一个方法获取连接对象
  3. 抽取一个方法释放资源

配置文件

  • 为获取数据库对应url、user、password,可以将其写入配置文件,在类中的静态代码块中读取字段值
1
2
3
4
url=jdbc:mysql://localhost:3306/test?&useSSL=false&serverTimezone=GMT%2B8
user=root
password=123456
driver=com.mysql.cj.jdbc.Driver

定义jdbcutils类

  • 本类中包含两个静态方法,获取数据库连接对象和释放资源。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
* JDBC工具类
* 抽取一个方法获取连接对象
* 抽取一个方法释放资源
* */
public class JDBCutils {
private static String url;//定义静态变量
private static String user;
private static String password;
private static String driver;
static{
try {
//创建Properties对象
Properties pro = new Properties();
ClassLoader cls = JDBCutils.class.getClassLoader();
InputStream is = cls.getResourceAsStream("jdbc.properties");
pro.load(is);
//pro.load(new FileReader("E:\\JAVA\\jdbc01\\jdbcday1\\src\\jdbc.properties"));
url = pro.getProperty("url");
user = pro.getProperty("user");
password = pro.getProperty("password");
driver = pro.getProperty("driver");
} catch (IOException e) {
e.printStackTrace();
}
//注册驱动
try {
Class.forName(driver);
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
}
/*
* 获取数据库连接对象
* @return Connection
* */
public static Connection getConnection() throws Exception {
Connection conn = DriverManager.getConnection(url, user, password);
return conn;
}
/*
* 释放资源
* 执行增删改语句时需要释放statement(sql执行对象)和Connection(数据库连接对象)
* 执行查询语句需要另外释放Resultset(数据库返回结果集)
* */
public static void close(Statement stmt,Connection conn){
if(stmt!=null){
try {
stmt.close();
System.out.println("数据库语句执行对像statement已关闭");
} catch (SQLException throwables) {
throwables.printStackTrace();
}
}
//关闭数据库连接
if(conn!=null){
try {
conn.close();
System.out.println("数据库连接connection已关闭");
} catch (SQLException throwables) {
throwables.printStackTrace();
}
}
}
public static void close(Statement stmt, Connection conn, ResultSet rs){
if(stmt!=null){
try {
stmt.close();
System.out.println("数据库语句执行对像statement已关闭");
} catch (SQLException throwables) {
throwables.printStackTrace();
}
}
//关闭数据库连接
if(conn!=null){
try {
conn.close();
System.out.println("数据库连接connection已关闭");
} catch (SQLException throwables) {
throwables.printStackTrace();
}
}
if(rs!=null){
try {
rs.close();
System.out.println("Resultset资源已关闭");
} catch (SQLException throwables) {
throwables.printStackTrace();
}
}
}
}

编写demo使用jdbcutil类

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
public class jdbcdemo2 {
public static void main(String[] args) {
//获取数据库连接
Connection conn = null;
Statement stmt = null;
ResultSet rs = null;
try {
conn = JDBCutils.getConnection();
String sql = "select *from stu";
stmt = conn.createStatement();
rs = stmt.executeQuery(sql);
while (rs.next()) {
Integer id = rs.getInt("id");
String stu_name = rs.getString("stu_name");
String stu_phone = rs.getString("stu_phone");
System.out.println("id:" + id + " stu_name:" + stu_name + " stu_phone:" + stu_phone);
}
} catch (Exception e) {
e.printStackTrace();
}finally {
JDBCutils.close(stmt,conn,rs);
}
}
}