乐知付加密服务平台

如果你有资源, 平台可以帮你实现内容变现, 无需搭建知识付费服务平台。

点击访问官方网站 https://lezhifu.cc

扫码关注公众号 乐知付加密服务平台-微信公众号
操作mysql工具类 | chenzuoli's blog

操作mysql工具类

下面介绍的是操作mysql的工具类,集成增删改查等功能方法,使用dbcp数据库连接池,让你的程序更高效。具体请看详情。

备注:代码环境jdk8(jdk7也可以)

maven项目依赖

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.41</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-dbcp2</artifactId>
<version>2.1.1</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
<version>2.4.2</version>
</dependency>

数据库连接配置文件

配置文件jdbc.properties放置在项目resources目录下,配置如下:

1
2
3
4
5
6
7
8
9
driverClassName=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/zs1?useSSL=false
username=root
password=root
initialSize=10
maxIdle=5
minIdle=2
autoReconnect=true
autoReconnectForPools=true

具体代码

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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
import com.pipilong.czl.model.QueryLogHistory;
import org.apache.commons.dbcp2.BasicDataSourceFactory;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.sql.DataSource;
import java.io.IOException;
import java.sql.*;
import java.util.*;

/**
* User: 陈作立
* Date: 2018/2/2
* Time: 13:39
* Description: 操作mysql数据库工具类
* Ps: mysql
*/
public class DBCPUtil {
private static Logger loger = LoggerFactory.getLogger(DBCPUtil.class);
private static DataSource dataSource = null;

static {
loger.info("---------开始初始化数据库连接池---------");
Properties prop = new Properties();
try {
prop.load(DBCPUtil.class.getClassLoader().getResourceAsStream("jdbc.properties"));
dataSource = BasicDataSourceFactory.createDataSource(prop);
} catch (IOException e) {
loger.error("---------加载[jdbc.properties]失败---------", e);
} catch (Exception e) {
loger.error("----------初始化数据库连接池异常失败---------", e);
}
loger.info("---------数据库连接池初始化完成---------");
}

/**
* 获取数据库连接
*
* @return
*/
public static Connection getConnection() {
Connection conn = null;
if (conn != null) {
return conn;
}
try {
conn = dataSource.getConnection();
} catch (SQLException e) {
loger.error("---------数据库连接池获取连接异常---------", e);
}
return conn;
}

/**
* 关闭数据库连接
*
* @param connection 数据库连接
*/
public static void close(Connection connection) {
if (connection != null) {
try {
connection.close();
} catch (SQLException e) {
loger.error("---------关闭Connection异常---------", e);
}
}
}

/**
* 关闭数据库连接
*
* @param conn 数据库连接
* @param stat 预编译
*/
public static void close(Connection conn, Statement stat) {
try {
if (stat != null) {
stat.close();
}
} catch (SQLException e) {
loger.error("---------关闭Connection、PreparedStatement异常---------", e);
} finally {
close(conn);
}
}

/**
* 关闭数据库连接
*
* @param conn 数据库连接
* @param stat 预编译
* @param rs 结果集
*/
public static void close(Connection conn, Statement stat, ResultSet rs) {
try {
if (rs != null) {
rs.close();
}
} catch (SQLException e) {
loger.error("---------关闭ResultSet异常---------", e);
} finally {
close(conn, stat);
}
}

/**
* 执行查询
*
* @param sql
* @param params
* @return
*/
public static List<Map<String, Object>> executeQuery(String sql, Object... params) {
List<Map<String, Object>> rowDataList = new ArrayList<Map<String, Object>>();
Connection conn = null;
PreparedStatement stat = null;
ResultSet resultSet = null;
try {
conn = getConnection();
stat = conn.prepareStatement(sql);
stat.setFetchSize(10000);
setStatParams(stat, params);
resultSet = stat.executeQuery();
rowDataList = getResultList(resultSet);
} catch (SQLException e) {
loger.error("---------数据查询异常[" + sql + "]---------", e);
} finally {
close(conn, stat, resultSet);
}
return rowDataList;
}

/**
* 更新数据
*
* @param sql sql语句
* @param params 参数
* @return 更新成功:true 更新失败:false
*/
public static boolean executeUpdate(String sql, Object... params) {
boolean isUpdated = false;
Connection conn = null;
PreparedStatement stat = null;
try {
conn = getConnection();
conn.setAutoCommit(false);
stat = conn.prepareStatement(sql);
setStatParams(stat, params);
int updatedNum = stat.executeUpdate();
isUpdated = updatedNum == 1;
conn.commit();
} catch (SQLException e) {
try {
conn.rollback();
} catch (SQLException e1) {
e1.printStackTrace();
}
loger.error("---------更新失败! sql:[" + sql + "], params:[" + Arrays.toString(params) + "]---------", e);
} finally {
close(conn, stat);
}
return isUpdated;
}

/**
* 执行批处理
*
* @param sqlList sql语句集合
* @return
*/
public static boolean executeBatch(List<String> sqlList) {
if (sqlList == null || sqlList.isEmpty()) {
return true;
}
Connection conn = null;
Statement stat = null;
try {
conn = getConnection();
conn.setAutoCommit(false);
stat = conn.createStatement();
for (String sql : sqlList) {
stat.addBatch(sql);
}
stat.executeBatch();
conn.commit();
return true;
} catch (SQLException e) {
try {
conn.rollback();
loger.error("---------批处理异常,执行回滚---------");
} catch (SQLException e1) {
loger.error("---------回滚异常---------", e1);
}
loger.error("---------执行批处理异常---------");
loger.error("---------批处理异常sql:" + Arrays.toString(sqlList.toArray()));
} finally {
try {
if (conn != null) {
conn.setAutoCommit(true);
}
} catch (SQLException e) {
loger.error("---------设置自动提交异常---------", e);
}
close(conn, stat);
}
return false;
}

/**
* 获取列名及数据
*
* @param rs 数据集
* @return
*/
private static List<Map<String, Object>> getResultList(ResultSet rs) throws SQLException {
List<Map<String, Object>> rowDataList = new ArrayList<Map<String, Object>>();
List<String> colNameList = getColumnName(rs);
while (rs.next()) {
Map<String, Object> rowData = new HashMap<String, Object>();
for (String colName : colNameList) {
rowData.put(colName, rs.getObject(colName));
}
if (!rowData.isEmpty()) {
rowDataList.add(rowData);
}
}
return rowDataList;
}

/**
* 获取列名
*
* @param rs 数据集
* @return
*/
private static List<String> getColumnName(ResultSet rs) throws SQLException {
List<String> columnList = new ArrayList<String>();
try {
ResultSetMetaData metaData = rs.getMetaData();
int columnCount = metaData.getColumnCount();
for (int i = 1; i <= columnCount; i++) {
columnList.add(metaData.getColumnName(i));
}
} catch (SQLException e) {
loger.info("------获取表列表异常------", e);
throw e;
}
return columnList;
}

/**
* 设置参数
*
* @param stat 预编译
* @param params 参数
*/
private static void setStatParams(PreparedStatement stat, Object... params) throws SQLException {
if (stat != null && params != null) {
try {
for (int len = params.length, i = 1; i <= len; i++) {
stat.setObject(i, params[i - 1]);
}
} catch (SQLException e) {
loger.error("------设置sql参数异常---------");
throw e;
}
}
}

}

好了,到这里就结束了,这个类基本可以满足操作mysql的需求了,大家放心使用吧,如果有什么问题,或者可以优化的地方,欢迎大家email我chenzuoli709@gmail.com

书山有路勤为径,学海无涯苦作舟。

欢迎关注微信公众号:【程序员写书】
程序员写书

喜欢宠物的朋友可以关注:【电巴克宠物Pets】
电巴克宠物

一起学习,一起进步。

-------------本文结束感谢您的阅读-------------