Browse Source

--add jdbc util

jiapeng 8 years ago
parent
commit
873f1f0060

+ 5 - 0
jfwUtil/src/main/java/org/jfw/util/jdbc/BatchPreparedStatementConfig.java

@ -0,0 +1,5 @@
1
package org.jfw.util.jdbc;
2
3
public interface BatchPreparedStatementConfig  extends PreparedStatementConfig{
4
	boolean hasNext();
5
}

+ 251 - 0
jfwUtil/src/main/java/org/jfw/util/jdbc/JdbcTemplate.java

@ -0,0 +1,251 @@
1
package org.jfw.util.jdbc;
2
3
import java.sql.Connection;
4
import java.sql.SQLException;
5
import java.util.List;
6
import java.util.Map;
7
8
import javax.sql.DataSource;
9
10
public class JdbcTemplate {
11
12
	private ThreadLocal<Connection> connHolder = new ThreadLocal<Connection>();
13
	private DataSource dataSource;
14
15
	public DataSource getDataSource() {
16
		return dataSource;
17
	}
18
19
	public void setDataSource(DataSource dataSource) {
20
		this.dataSource = dataSource;
21
	}
22
23
	public Connection getConnection() throws SQLException {
24
		Connection con = connHolder.get();
25
		if (con == null) {
26
			con = this.dataSource.getConnection();
27
			connHolder.set(con);
28
		}
29
		return con;
30
	}
31
32
	public Connection getConnection(boolean polling) throws SQLException {
33
		Connection con = connHolder.get();
34
		if (con == null && polling) {
35
			con = this.dataSource.getConnection();
36
			connHolder.set(con);
37
		}
38
		return con;
39
	}
40
41
	public void commit() throws SQLException {
42
		Connection con = connHolder.get();
43
		if (null != con)
44
			con.commit();
45
	}
46
47
	public void rollback() {
48
		Connection con = connHolder.get();
49
		if (null != con)
50
			try {
51
				con.rollback();
52
			} catch (SQLException e) {
53
			}
54
	}
55
56
	public void close() throws SQLException {
57
		Connection con = connHolder.get();
58
		if (null != con) {
59
			try {
60
				con.close();
61
			} finally {
62
				connHolder.remove();
63
			}
64
		}
65
	}
66
67
	public int execute(String sql) throws SQLException {
68
		return JdbcUtil.execute(this.getConnection(), sql);
69
	}
70
71
	public int execute(String sql, PreparedStatementConfig config) throws SQLException {
72
		return JdbcUtil.execute(this.getConnection(), sql, config);
73
	}
74
75
	public int[] batchExecute(String sql, BatchPreparedStatementConfig config) throws SQLException {
76
		return JdbcUtil.batchExecute(this.getConnection(), sql, config);
77
	}
78
79
	public <T> T query(String sql, ResultSetExtractor<T> rse) throws SQLException {
80
		return JdbcUtil.query(this.getConnection(), sql, rse);
81
	}
82
83
	public <T> T query(String sql, ResultSetExtractor<T> rse, PreparedStatementConfig config) throws SQLException {
84
		return JdbcUtil.query(this.getConnection(), sql, rse, config);
85
	}
86
87
	public <T> List<T> queryList(String sql, ResultSetExtractor<T> rse) throws SQLException {
88
		return JdbcUtil.queryList(this.getConnection(), sql, rse);
89
	}
90
91
	public <T> List<T> queryList(String sql, ResultSetExtractor<T> rse, PreparedStatementConfig config)
92
			throws SQLException {
93
		return JdbcUtil.queryList(this.getConnection(), sql, rse, config);
94
	}
95
96
	public int queryInt(String sql, int defaultValue) throws SQLException {
97
		return JdbcUtil.queryInt(this.getConnection(), sql, defaultValue);
98
	}
99
100
	public int queryInt(String sql, int valWithNoFound, int valWithNull) throws SQLException {
101
		return JdbcUtil.queryInt(this.getConnection(), sql, valWithNoFound, valWithNull);
102
	}
103
104
	public byte queryByte(String sql, byte defaultValue) throws SQLException {
105
		return JdbcUtil.queryByte(this.getConnection(), sql, defaultValue);
106
	}
107
108
	public byte queryByte(String sql, byte valWithNoFound, byte valWithNull) throws SQLException {
109
		return JdbcUtil.queryByte(this.getConnection(), sql, valWithNoFound, valWithNull);
110
	}
111
112
	public short queryShort(String sql, short defaultValue) throws SQLException {
113
		return JdbcUtil.queryShort(this.getConnection(), sql, defaultValue);
114
	}
115
116
	public short queryShort(String sql, short valWithNoFound, short valWithNull) throws SQLException {
117
		return JdbcUtil.queryShort(this.getConnection(), sql, valWithNoFound, valWithNull);
118
	}
119
120
	public float queryFloat(String sql, float defaultValue) throws SQLException {
121
		return JdbcUtil.queryFloat(this.getConnection(), sql, defaultValue);
122
	}
123
124
	public float queryFloat(String sql, float valWithNoFound, float valWithNull) throws SQLException {
125
		return JdbcUtil.queryFloat(this.getConnection(), sql, valWithNoFound, valWithNull);
126
	}
127
128
	public double queryDouble(String sql, double defaultValue) throws SQLException {
129
		return JdbcUtil.queryDouble(this.getConnection(), sql, defaultValue);
130
	}
131
132
	public double queryDouble(String sql, double valWithNoFound, double valWithNull) throws SQLException {
133
		return JdbcUtil.queryDouble(this.getConnection(), sql, valWithNoFound, valWithNull);
134
	}
135
136
	public String queryString(String sql, String defaultValue) throws SQLException {
137
		return JdbcUtil.queryString(this.getConnection(), sql, defaultValue);
138
	}
139
140
	public String queryString(String sql, String valWithNoFound, String valWithNull) throws SQLException {
141
		return JdbcUtil.queryString(this.getConnection(), sql, valWithNoFound, valWithNull);
142
	}
143
144
	public int queryInt(String sql, PreparedStatementConfig config, int defaultValue) throws SQLException {
145
		return JdbcUtil.queryInt(this.getConnection(), sql, config, defaultValue);
146
	}
147
148
	public int queryInt(String sql, PreparedStatementConfig config, int valWithNoFound, int valWithNull)
149
			throws SQLException {
150
		return JdbcUtil.queryInt(this.getConnection(), sql, config, valWithNoFound, valWithNull);
151
	}
152
153
	public byte queryByte(String sql, PreparedStatementConfig config, byte defaultValue) throws SQLException {
154
		return JdbcUtil.queryByte(this.getConnection(), sql, config, defaultValue);
155
	}
156
157
	public byte queryByte(String sql, PreparedStatementConfig config, byte valWithNoFound, byte valWithNull)
158
			throws SQLException {
159
		return JdbcUtil.queryByte(this.getConnection(), sql, config, valWithNoFound, valWithNull);
160
	}
161
162
	public long queryLong(String sql, PreparedStatementConfig config, long defaultValue) throws SQLException {
163
		return JdbcUtil.queryLong(this.getConnection(), sql, config, defaultValue);
164
	}
165
166
	public long queryLong(String sql, PreparedStatementConfig config, long valWithNoFound, long valWithNull)
167
			throws SQLException {
168
		return JdbcUtil.queryLong(this.getConnection(), sql, config, valWithNoFound, valWithNull);
169
	}
170
171
	public long queryLong(String sql, long defaultValue) throws SQLException {
172
		return JdbcUtil.queryLong(this.getConnection(), sql, defaultValue);
173
	}
174
175
	public long queryLong(String sql, long valWithNoFound, long valWithNull) throws SQLException {
176
		return JdbcUtil.queryLong(this.getConnection(), sql, valWithNoFound, valWithNull);
177
	}
178
179
	public short queryShort(String sql, PreparedStatementConfig config, short defaultValue) throws SQLException {
180
		return JdbcUtil.queryShort(this.getConnection(), sql, config, defaultValue);
181
	}
182
183
	public short queryShort(String sql, PreparedStatementConfig config, short valWithNoFound, short valWithNull)
184
			throws SQLException {
185
		return JdbcUtil.queryShort(this.getConnection(), sql, config, valWithNoFound, valWithNull);
186
	}
187
188
	public float queryFloat(String sql, PreparedStatementConfig config, float defaultValue) throws SQLException {
189
		return JdbcUtil.queryFloat(this.getConnection(), sql, config, defaultValue);
190
	}
191
192
	public float queryfloat(String sql, PreparedStatementConfig config, float valWithNoFound, float valWithNull)
193
			throws SQLException {
194
		return JdbcUtil.queryfloat(this.getConnection(), sql, config, valWithNoFound, valWithNull);
195
	}
196
197
	public double queryDouble(String sql, PreparedStatementConfig config, double defaultValue) throws SQLException {
198
		return JdbcUtil.queryDouble(this.getConnection(), sql, config, defaultValue);
199
	}
200
201
	public double queryDouble(String sql, PreparedStatementConfig config, double valWithNoFound, double valWithNull)
202
			throws SQLException {
203
		return JdbcUtil.queryDouble(this.getConnection(), sql, config, valWithNoFound, valWithNull);
204
	}
205
206
	public String queryString(String sql, PreparedStatementConfig config, String defaultValue) throws SQLException {
207
		return JdbcUtil.queryString(this.getConnection(), sql, config, defaultValue);
208
	}
209
210
	public String queryString(String sql, PreparedStatementConfig config, String valWithNoFound, String valWithNull)
211
			throws SQLException {
212
		return JdbcUtil.queryString(this.getConnection(), sql, config, valWithNoFound, valWithNull);
213
	}
214
215
	public Map<String, Object> queryMap(String sql) throws SQLException {
216
		return JdbcUtil.queryMap(this.getConnection(), sql);
217
	}
218
219
	public Map<String, Object> queryMap(String sql, PreparedStatementConfig config) throws SQLException {
220
		return JdbcUtil.queryMap(this.getConnection(), sql, config);
221
	}
222
223
	public List<Map<String, Object>> queryMaps(String sql) throws SQLException {
224
		return JdbcUtil.queryMaps(this.getConnection(), sql);
225
226
	}
227
228
	public List<Map<String, Object>> queryMaps(String sql, PreparedStatementConfig config) throws SQLException {
229
		return JdbcUtil.queryMaps(this.getConnection(), sql, config);
230
	}
231
232
	public <T> T queryObject(String sql, Class<T> clazz) throws SQLException {
233
		return JdbcUtil.queryObject(this.getConnection(), sql, clazz);
234
	}
235
236
	public <T> List<T> queryObjects(String sql, Class<T> clazz) throws SQLException {
237
		return JdbcUtil.queryObjects(this.getConnection(), sql, clazz);
238
	}
239
240
	public <T> T queryObject(Connection con, String sql, PreparedStatementConfig config, Class<T> clazz)
241
			throws SQLException {
242
		return JdbcUtil.queryObject(this.getConnection(), sql, config, clazz);
243
	}
244
245
	public <T> List<T> queryObjects(Connection con, String sql, PreparedStatementConfig config, Class<T> clazz)
246
			throws SQLException {
247
		return JdbcUtil.queryObjects(this.getConnection(), sql, config, clazz);
248
249
	}
250
251
}

+ 1091 - 0
jfwUtil/src/main/java/org/jfw/util/jdbc/JdbcUtil.java

@ -0,0 +1,1091 @@
1
package org.jfw.util.jdbc;
2
3
import java.lang.reflect.Method;
4
import java.lang.reflect.Modifier;
5
import java.sql.Blob;
6
import java.sql.Clob;
7
import java.sql.Connection;
8
import java.sql.PreparedStatement;
9
import java.sql.ResultSet;
10
import java.sql.ResultSetMetaData;
11
import java.sql.SQLException;
12
import java.sql.Statement;
13
import java.util.ArrayList;
14
import java.util.LinkedHashMap;
15
import java.util.LinkedList;
16
import java.util.List;
17
import java.util.Locale;
18
import java.util.Map;
19
20
public final class JdbcUtil {
21
	// private static final ThreadLocal<Connection> CONN_HOLDER = new
22
	// ThreadLocal<Connection>();
23
24
	private JdbcUtil() {
25
	}
26
27
	public static void close(Connection con) {
28
		try {
29
			con.close();
30
		} catch (SQLException e) {
31
		}
32
	}
33
34
	public static void close(Statement st) {
35
		try {
36
			st.close();
37
		} catch (SQLException e) {
38
		}
39
	}
40
41
	public static void close(ResultSet rs) {
42
		try {
43
			rs.close();
44
		} catch (SQLException e) {
45
		}
46
	}
47
48
	public static void rollback(Connection con) {
49
		try {
50
			con.rollback();
51
		} catch (SQLException e) {
52
		}
53
	}
54
55
	public static int execute(Connection con, String sql) throws SQLException {
56
		PreparedStatement ps = con.prepareCall(sql);
57
		try {
58
			return ps.executeUpdate();
59
		} finally {
60
			close(ps);
61
		}
62
	}
63
64
	public static int execute(Connection con, String sql, PreparedStatementConfig config) throws SQLException {
65
		PreparedStatement ps = con.prepareCall(sql);
66
		try {
67
			config.config(ps);
68
			return ps.executeUpdate();
69
		} finally {
70
			close(ps);
71
		}
72
	}
73
74
	public static int[] batchExecute(Connection con, String sql, BatchPreparedStatementConfig config)
75
			throws SQLException {
76
		PreparedStatement ps = con.prepareCall(sql);
77
		try {
78
			while (config.hasNext()) {
79
				config.config(ps);
80
				ps.addBatch();
81
			}
82
			return ps.executeBatch();
83
		} finally {
84
			close(ps);
85
		}
86
	}
87
88
	public static <T> T query(Connection con, String sql, ResultSetExtractor<T> rse) throws SQLException {
89
		PreparedStatement ps = con.prepareCall(sql);
90
		try {
91
			ResultSet rs = ps.executeQuery();
92
			try {
93
				return rse.extractData(rs);
94
			} finally {
95
				close(rs);
96
			}
97
		} finally {
98
			close(ps);
99
		}
100
	}
101
102
	public static <T> T query(Connection con, String sql, ResultSetExtractor<T> rse, PreparedStatementConfig config)
103
			throws SQLException {
104
		PreparedStatement ps = con.prepareCall(sql);
105
		try {
106
			config.config(ps);
107
			ResultSet rs = ps.executeQuery();
108
			try {
109
				return rse.extractData(rs);
110
			} finally {
111
				close(rs);
112
			}
113
		} finally {
114
			close(ps);
115
		}
116
	}
117
118
	public static <T> List<T> queryList(Connection con, String sql, ResultSetExtractor<T> rse) throws SQLException {
119
		PreparedStatement ps = con.prepareCall(sql);
120
		try {
121
			ResultSet rs = ps.executeQuery();
122
			List<T> result = new ArrayList<T>();
123
			try {
124
				while (rs.next()) {
125
					result.add(rse.extractData(rs));
126
				}
127
				return result;
128
			} finally {
129
				close(rs);
130
			}
131
		} finally {
132
			close(ps);
133
		}
134
	}
135
136
	public static <T> List<T> queryList(Connection con, String sql, ResultSetExtractor<T> rse,
137
			PreparedStatementConfig config) throws SQLException {
138
		PreparedStatement ps = con.prepareCall(sql);
139
		try {
140
			config.config(ps);
141
			ResultSet rs = ps.executeQuery();
142
			List<T> result = new ArrayList<T>();
143
			try {
144
				while (rs.next()) {
145
					result.add(rse.extractData(rs));
146
				}
147
				return result;
148
			} finally {
149
				close(rs);
150
			}
151
		} finally {
152
			close(ps);
153
		}
154
	}
155
156
	public static int queryInt(Connection con, String sql, int defaultValue) throws SQLException {
157
		PreparedStatement ps = con.prepareCall(sql);
158
		try {
159
			ResultSet rs = ps.executeQuery();
160
			try {
161
				if (rs.next()) {
162
					int ret = rs.getInt(1);
163
					if (rs.wasNull())
164
						return defaultValue;
165
					return ret;
166
				} else {
167
					return defaultValue;
168
				}
169
			} finally {
170
				close(rs);
171
			}
172
		} finally {
173
			close(ps);
174
		}
175
	}
176
177
	public static int queryInt(Connection con, String sql, int valWithNoFound, int valWithNull) throws SQLException {
178
		PreparedStatement ps = con.prepareCall(sql);
179
		try {
180
			ResultSet rs = ps.executeQuery();
181
			try {
182
				if (rs.next()) {
183
					int ret = rs.getInt(1);
184
					if (rs.wasNull())
185
						return valWithNull;
186
					return ret;
187
				} else {
188
					return valWithNoFound;
189
				}
190
			} finally {
191
				close(rs);
192
			}
193
		} finally {
194
			close(ps);
195
		}
196
	}
197
198
	public static byte queryByte(Connection con, String sql, byte defaultValue) throws SQLException {
199
		PreparedStatement ps = con.prepareCall(sql);
200
		try {
201
			ResultSet rs = ps.executeQuery();
202
			try {
203
				if (rs.next()) {
204
					byte ret = rs.getByte(1);
205
					if (rs.wasNull())
206
						return defaultValue;
207
					return ret;
208
				} else {
209
					return defaultValue;
210
				}
211
			} finally {
212
				close(rs);
213
			}
214
		} finally {
215
			close(ps);
216
		}
217
	}
218
219
	public static byte queryByte(Connection con, String sql, byte valWithNoFound, byte valWithNull)
220
			throws SQLException {
221
		PreparedStatement ps = con.prepareCall(sql);
222
		try {
223
			ResultSet rs = ps.executeQuery();
224
			try {
225
				if (rs.next()) {
226
					byte ret = rs.getByte(1);
227
					if (rs.wasNull())
228
						return valWithNull;
229
					return ret;
230
				} else {
231
					return valWithNoFound;
232
				}
233
			} finally {
234
				close(rs);
235
			}
236
		} finally {
237
			close(ps);
238
		}
239
	}
240
241
	public static short queryShort(Connection con, String sql, short defaultValue) throws SQLException {
242
		PreparedStatement ps = con.prepareCall(sql);
243
		try {
244
			ResultSet rs = ps.executeQuery();
245
			try {
246
				if (rs.next()) {
247
					short ret = rs.getShort(1);
248
					if (rs.wasNull())
249
						return defaultValue;
250
					return ret;
251
				} else {
252
					return defaultValue;
253
				}
254
			} finally {
255
				close(rs);
256
			}
257
		} finally {
258
			close(ps);
259
		}
260
	}
261
262
	public static short queryShort(Connection con, String sql, short valWithNoFound, short valWithNull)
263
			throws SQLException {
264
		PreparedStatement ps = con.prepareCall(sql);
265
		try {
266
			ResultSet rs = ps.executeQuery();
267
			try {
268
				if (rs.next()) {
269
					short ret = rs.getShort(1);
270
					if (rs.wasNull())
271
						return valWithNull;
272
					return ret;
273
				} else {
274
					return valWithNoFound;
275
				}
276
			} finally {
277
				close(rs);
278
			}
279
		} finally {
280
			close(ps);
281
		}
282
	}
283
284
	public static float queryFloat(Connection con, String sql, float defaultValue) throws SQLException {
285
		PreparedStatement ps = con.prepareCall(sql);
286
		try {
287
			ResultSet rs = ps.executeQuery();
288
			try {
289
				if (rs.next()) {
290
					float ret = rs.getFloat(1);
291
					if (rs.wasNull())
292
						return defaultValue;
293
					return ret;
294
				} else {
295
					return defaultValue;
296
				}
297
			} finally {
298
				close(rs);
299
			}
300
		} finally {
301
			close(ps);
302
		}
303
	}
304
305
	public static float queryFloat(Connection con, String sql, float valWithNoFound, float valWithNull)
306
			throws SQLException {
307
		PreparedStatement ps = con.prepareCall(sql);
308
		try {
309
			ResultSet rs = ps.executeQuery();
310
			try {
311
				if (rs.next()) {
312
					float ret = rs.getFloat(1);
313
					if (rs.wasNull())
314
						return valWithNull;
315
					return ret;
316
				} else {
317
					return valWithNoFound;
318
				}
319
			} finally {
320
				close(rs);
321
			}
322
		} finally {
323
			close(ps);
324
		}
325
	}
326
327
	public static double queryDouble(Connection con, String sql, double defaultValue) throws SQLException {
328
		PreparedStatement ps = con.prepareCall(sql);
329
		try {
330
			ResultSet rs = ps.executeQuery();
331
			try {
332
				if (rs.next()) {
333
					double ret = rs.getDouble(1);
334
					if (rs.wasNull())
335
						return defaultValue;
336
					return ret;
337
				} else {
338
					return defaultValue;
339
				}
340
			} finally {
341
				close(rs);
342
			}
343
		} finally {
344
			close(ps);
345
		}
346
	}
347
348
	public static double queryDouble(Connection con, String sql, double valWithNoFound, double valWithNull)
349
			throws SQLException {
350
		PreparedStatement ps = con.prepareCall(sql);
351
		try {
352
			ResultSet rs = ps.executeQuery();
353
			try {
354
				if (rs.next()) {
355
					double ret = rs.getDouble(1);
356
					if (rs.wasNull())
357
						return valWithNull;
358
					return ret;
359
				} else {
360
					return valWithNoFound;
361
				}
362
			} finally {
363
				close(rs);
364
			}
365
		} finally {
366
			close(ps);
367
		}
368
	}
369
370
	public static String queryString(Connection con, String sql, String defaultValue) throws SQLException {
371
		PreparedStatement ps = con.prepareCall(sql);
372
		try {
373
			ResultSet rs = ps.executeQuery();
374
			try {
375
				if (rs.next()) {
376
					String ret = rs.getString(1);
377
					if (rs.wasNull())
378
						return defaultValue;
379
					return ret;
380
				} else {
381
					return defaultValue;
382
				}
383
			} finally {
384
				close(rs);
385
			}
386
		} finally {
387
			close(ps);
388
		}
389
	}
390
391
	public static String queryString(Connection con, String sql, String valWithNoFound, String valWithNull)
392
			throws SQLException {
393
		PreparedStatement ps = con.prepareCall(sql);
394
		try {
395
			ResultSet rs = ps.executeQuery();
396
			try {
397
				if (rs.next()) {
398
					String ret = rs.getString(1);
399
					if (rs.wasNull())
400
						return valWithNull;
401
					return ret;
402
				} else {
403
					return valWithNoFound;
404
				}
405
			} finally {
406
				close(rs);
407
			}
408
		} finally {
409
			close(ps);
410
		}
411
	}
412
413
	public static int queryInt(Connection con, String sql, PreparedStatementConfig config, int defaultValue)
414
			throws SQLException {
415
		PreparedStatement ps = con.prepareCall(sql);
416
		try {
417
			config.config(ps);
418
			ResultSet rs = ps.executeQuery();
419
			try {
420
				if (rs.next()) {
421
					int ret = rs.getInt(1);
422
					if (rs.wasNull())
423
						return defaultValue;
424
					return ret;
425
				} else {
426
					return defaultValue;
427
				}
428
			} finally {
429
				close(rs);
430
			}
431
		} finally {
432
			close(ps);
433
		}
434
	}
435
436
	public static int queryInt(Connection con, String sql, PreparedStatementConfig config, int valWithNoFound,
437
			int valWithNull) throws SQLException {
438
		PreparedStatement ps = con.prepareCall(sql);
439
		try {
440
			config.config(ps);
441
			ResultSet rs = ps.executeQuery();
442
			try {
443
				if (rs.next()) {
444
					int ret = rs.getInt(1);
445
					if (rs.wasNull())
446
						return valWithNull;
447
					return ret;
448
				} else {
449
					return valWithNoFound;
450
				}
451
			} finally {
452
				close(rs);
453
			}
454
		} finally {
455
			close(ps);
456
		}
457
	}
458
459
	public static byte queryByte(Connection con, String sql, PreparedStatementConfig config, byte defaultValue)
460
			throws SQLException {
461
		PreparedStatement ps = con.prepareCall(sql);
462
		try {
463
			config.config(ps);
464
			ResultSet rs = ps.executeQuery();
465
			try {
466
				if (rs.next()) {
467
					byte ret = rs.getByte(1);
468
					if (rs.wasNull())
469
						return defaultValue;
470
					return ret;
471
				} else {
472
					return defaultValue;
473
				}
474
			} finally {
475
				close(rs);
476
			}
477
		} finally {
478
			close(ps);
479
		}
480
	}
481
482
	public static byte queryByte(Connection con, String sql, PreparedStatementConfig config, byte valWithNoFound,
483
			byte valWithNull) throws SQLException {
484
		PreparedStatement ps = con.prepareCall(sql);
485
		try {
486
			config.config(ps);
487
			ResultSet rs = ps.executeQuery();
488
			try {
489
				if (rs.next()) {
490
					byte ret = rs.getByte(1);
491
					if (rs.wasNull())
492
						return valWithNull;
493
					return ret;
494
				} else {
495
					return valWithNoFound;
496
				}
497
			} finally {
498
				close(rs);
499
			}
500
		} finally {
501
			close(ps);
502
		}
503
	}
504
505
	public static long queryLong(Connection con, String sql, PreparedStatementConfig config, long defaultValue)
506
			throws SQLException {
507
		PreparedStatement ps = con.prepareCall(sql);
508
		try {
509
			config.config(ps);
510
			ResultSet rs = ps.executeQuery();
511
			try {
512
				if (rs.next()) {
513
					long ret = rs.getLong(1);
514
					if (rs.wasNull())
515
						return defaultValue;
516
					return ret;
517
				} else {
518
					return defaultValue;
519
				}
520
			} finally {
521
				close(rs);
522
			}
523
		} finally {
524
			close(ps);
525
		}
526
	}
527
528
	public static long queryLong(Connection con, String sql, PreparedStatementConfig config, long valWithNoFound,
529
			long valWithNull) throws SQLException {
530
		PreparedStatement ps = con.prepareCall(sql);
531
		try {
532
			config.config(ps);
533
			ResultSet rs = ps.executeQuery();
534
			try {
535
				if (rs.next()) {
536
					long ret = rs.getLong(1);
537
					if (rs.wasNull())
538
						return valWithNull;
539
					return ret;
540
				} else {
541
					return valWithNoFound;
542
				}
543
			} finally {
544
				close(rs);
545
			}
546
		} finally {
547
			close(ps);
548
		}
549
	}
550
551
	public static long queryLong(Connection con, String sql, long defaultValue) throws SQLException {
552
		PreparedStatement ps = con.prepareCall(sql);
553
		try {
554
			ResultSet rs = ps.executeQuery();
555
			try {
556
				if (rs.next()) {
557
					long ret = rs.getLong(1);
558
					if (rs.wasNull())
559
						return defaultValue;
560
					return ret;
561
				} else {
562
					return defaultValue;
563
				}
564
			} finally {
565
				close(rs);
566
			}
567
		} finally {
568
			close(ps);
569
		}
570
	}
571
572
	public static long queryLong(Connection con, String sql, long valWithNoFound, long valWithNull)
573
			throws SQLException {
574
		PreparedStatement ps = con.prepareCall(sql);
575
		try {
576
			ResultSet rs = ps.executeQuery();
577
			try {
578
				if (rs.next()) {
579
					long ret = rs.getLong(1);
580
					if (rs.wasNull())
581
						return valWithNull;
582
					return ret;
583
				} else {
584
					return valWithNoFound;
585
				}
586
			} finally {
587
				close(rs);
588
			}
589
		} finally {
590
			close(ps);
591
		}
592
	}
593
594
	public static short queryShort(Connection con, String sql, PreparedStatementConfig config, short defaultValue)
595
			throws SQLException {
596
		PreparedStatement ps = con.prepareCall(sql);
597
		try {
598
			config.config(ps);
599
			ResultSet rs = ps.executeQuery();
600
			try {
601
				if (rs.next()) {
602
					short ret = rs.getShort(1);
603
					if (rs.wasNull())
604
						return defaultValue;
605
					return ret;
606
				} else {
607
					return defaultValue;
608
				}
609
			} finally {
610
				close(rs);
611
			}
612
		} finally {
613
			close(ps);
614
		}
615
	}
616
617
	public static short queryShort(Connection con, String sql, PreparedStatementConfig config, short valWithNoFound,
618
			short valWithNull) throws SQLException {
619
		PreparedStatement ps = con.prepareCall(sql);
620
		try {
621
			config.config(ps);
622
			ResultSet rs = ps.executeQuery();
623
			try {
624
				if (rs.next()) {
625
					short ret = rs.getShort(1);
626
					if (rs.wasNull())
627
						return valWithNull;
628
					return ret;
629
				} else {
630
					return valWithNoFound;
631
				}
632
			} finally {
633
				close(rs);
634
			}
635
		} finally {
636
			close(ps);
637
		}
638
	}
639
640
	public static float queryFloat(Connection con, String sql, PreparedStatementConfig config, float defaultValue)
641
			throws SQLException {
642
		PreparedStatement ps = con.prepareCall(sql);
643
		try {
644
			config.config(ps);
645
			ResultSet rs = ps.executeQuery();
646
			try {
647
				if (rs.next()) {
648
					float ret = rs.getFloat(1);
649
					if (rs.wasNull())
650
						return defaultValue;
651
					return ret;
652
				} else {
653
					return defaultValue;
654
				}
655
			} finally {
656
				close(rs);
657
			}
658
		} finally {
659
			close(ps);
660
		}
661
	}
662
663
	public static float queryfloat(Connection con, String sql, PreparedStatementConfig config, float valWithNoFound,
664
			float valWithNull) throws SQLException {
665
		PreparedStatement ps = con.prepareCall(sql);
666
		try {
667
			config.config(ps);
668
			ResultSet rs = ps.executeQuery();
669
			try {
670
				if (rs.next()) {
671
					float ret = rs.getFloat(1);
672
					if (rs.wasNull())
673
						return valWithNull;
674
					return ret;
675
				} else {
676
					return valWithNoFound;
677
				}
678
			} finally {
679
				close(rs);
680
			}
681
		} finally {
682
			close(ps);
683
		}
684
	}
685
686
	public static double queryDouble(Connection con, String sql, PreparedStatementConfig config, double defaultValue)
687
			throws SQLException {
688
		PreparedStatement ps = con.prepareCall(sql);
689
		try {
690
			config.config(ps);
691
			ResultSet rs = ps.executeQuery();
692
			try {
693
				if (rs.next()) {
694
					double ret = rs.getDouble(1);
695
					if (rs.wasNull())
696
						return defaultValue;
697
					return ret;
698
				} else {
699
					return defaultValue;
700
				}
701
			} finally {
702
				close(rs);
703
			}
704
		} finally {
705
			close(ps);
706
		}
707
	}
708
709
	public static double queryDouble(Connection con, String sql, PreparedStatementConfig config, double valWithNoFound,
710
			double valWithNull) throws SQLException {
711
		PreparedStatement ps = con.prepareCall(sql);
712
		try {
713
			config.config(ps);
714
			ResultSet rs = ps.executeQuery();
715
			try {
716
				if (rs.next()) {
717
					double ret = rs.getDouble(1);
718
					if (rs.wasNull())
719
						return valWithNull;
720
					return ret;
721
				} else {
722
					return valWithNoFound;
723
				}
724
			} finally {
725
				close(rs);
726
			}
727
		} finally {
728
			close(ps);
729
		}
730
	}
731
732
	public static String queryString(Connection con, String sql, PreparedStatementConfig config, String defaultValue)
733
			throws SQLException {
734
		PreparedStatement ps = con.prepareCall(sql);
735
		try {
736
			config.config(ps);
737
			ResultSet rs = ps.executeQuery();
738
			try {
739
				if (rs.next()) {
740
					String ret = rs.getString(1);
741
					if (rs.wasNull())
742
						return defaultValue;
743
					return ret;
744
				} else {
745
					return defaultValue;
746
				}
747
			} finally {
748
				close(rs);
749
			}
750
		} finally {
751
			close(ps);
752
		}
753
	}
754
755
	public static String queryString(Connection con, String sql, PreparedStatementConfig config, String valWithNoFound,
756
			String valWithNull) throws SQLException {
757
		PreparedStatement ps = con.prepareCall(sql);
758
		try {
759
			config.config(ps);
760
			ResultSet rs = ps.executeQuery();
761
			try {
762
				if (rs.next()) {
763
					String ret = rs.getString(1);
764
					if (rs.wasNull())
765
						return valWithNull;
766
					return ret;
767
				} else {
768
					return valWithNoFound;
769
				}
770
			} finally {
771
				close(rs);
772
			}
773
		} finally {
774
			close(ps);
775
		}
776
	}
777
778
	public static Map<String, Object> queryMap(Connection con, String sql) throws SQLException {
779
		PreparedStatement ps = con.prepareStatement(sql);
780
		try {
781
			ResultSet rs = ps.executeQuery();
782
			try {
783
				if (rs.next()) {
784
785
					ResultSetMetaData rsmd = rs.getMetaData();
786
787
					int columnCount = rsmd.getColumnCount();
788
					Map<String, Object> ret = new LinkedHashMap<String, Object>(columnCount);
789
					for (int i = 1; i <= columnCount; i++) {
790
						ret.put(lookupColumnName(rsmd, i), getResultSetValue(rs, i));
791
					}
792
					return ret;
793
				} else {
794
					return null;
795
				}
796
			} finally {
797
				close(rs);
798
			}
799
		} finally {
800
			close(ps);
801
		}
802
803
	}
804
805
	public static Map<String, Object> queryMap(Connection con, String sql, PreparedStatementConfig config)
806
			throws SQLException {
807
		PreparedStatement ps = con.prepareStatement(sql);
808
		try {
809
			config.config(ps);
810
			ResultSet rs = ps.executeQuery();
811
			try {
812
				if (rs.next()) {
813
					ResultSetMetaData rsmd = rs.getMetaData();
814
					int columnCount = rsmd.getColumnCount();
815
					Map<String, Object> ret = new LinkedHashMap<String, Object>(columnCount);
816
					for (int i = 1; i <= columnCount; i++) {
817
						ret.put(lookupColumnName(rsmd, i), getResultSetValue(rs, i));
818
					}
819
					return ret;
820
				} else {
821
					return null;
822
				}
823
			} finally {
824
				close(rs);
825
			}
826
		} finally {
827
			close(ps);
828
		}
829
	}
830
831
	public static List<Map<String, Object>> queryMaps(Connection con, String sql) throws SQLException {
832
		PreparedStatement ps = con.prepareStatement(sql);
833
		try {
834
			ResultSet rs = ps.executeQuery();
835
			try {
836
				if (rs.next()) {
837
					ResultSetMetaData rsmd = rs.getMetaData();
838
					int columnCount = rsmd.getColumnCount();
839
840
					List<Map<String, Object>> rets = new LinkedList<Map<String, Object>>();
841
					++columnCount;
842
					String[] keys = new String[columnCount];
843
					for (int i = 1; i < columnCount; ++i) {
844
						keys[i] = lookupColumnName(rsmd, i);
845
					}
846
					do {
847
						Map<String, Object> ret = new LinkedHashMap<String, Object>(columnCount);
848
						for (int i = 1; i < columnCount; i++) {
849
							ret.put(keys[i], getResultSetValue(rs, i));
850
						}
851
						rets.add(ret);
852
					} while (rs.next());
853
					return rets;
854
				} else {
855
					return null;
856
				}
857
			} finally {
858
				close(rs);
859
			}
860
		} finally {
861
			close(ps);
862
		}
863
864
	}
865
866
	public static List<Map<String, Object>> queryMaps(Connection con, String sql, PreparedStatementConfig config)
867
			throws SQLException {
868
		PreparedStatement ps = con.prepareStatement(sql);
869
		try {
870
			config.config(ps);
871
			ResultSet rs = ps.executeQuery();
872
			try {
873
				if (rs.next()) {
874
					ResultSetMetaData rsmd = rs.getMetaData();
875
					int columnCount = rsmd.getColumnCount();
876
877
					List<Map<String, Object>> rets = new LinkedList<Map<String, Object>>();
878
					++columnCount;
879
					String[] keys = new String[columnCount];
880
					for (int i = 1; i < columnCount; ++i) {
881
						keys[i] = lookupColumnName(rsmd, i);
882
					}
883
					do {
884
						Map<String, Object> ret = new LinkedHashMap<String, Object>(columnCount);
885
						for (int i = 1; i < columnCount; i++) {
886
							ret.put(keys[i], getResultSetValue(rs, i));
887
						}
888
						rets.add(ret);
889
					} while (rs.next());
890
					return rets;
891
				} else {
892
					return null;
893
				}
894
			} finally {
895
				close(rs);
896
			}
897
		} finally {
898
			close(ps);
899
		}
900
901
	}
902
903
	public static <T> T queryObject(Connection con, String sql, Class<T> clazz) throws SQLException {
904
		PreparedStatement ps = con.prepareCall(sql);
905
		try {
906
			T ret = null;
907
			ResultSet rs = ps.executeQuery();
908
			try {
909
				if (rs.next()) {
910
					try {
911
						ResultSetMetaData rsmd = rs.getMetaData();
912
						Method[] methods = new Method[rsmd.getColumnCount() + 1];
913
						Method[] dms = clazz.getMethods();
914
						for (int i = 1; i <= methods.length; ++i) {
915
							String caption = lookupColumnName(rsmd, i);
916
							methods[i] = match(caption, dms);
917
						}
918
						ret = (T) clazz.newInstance();
919
						for(int i = 1 ;i < methods.length ; ++i){
920
							if(null!=methods[i]) methods[i].invoke(ret,rs.getObject(i));
921
						}
922
						return ret;
923
					} catch (Exception e) {
924
						throw new RuntimeException(e);
925
					}
926
				}
927
				return null;
928
929
			} finally {
930
				close(rs);
931
			}
932
		} finally {
933
			close(ps);
934
		}
935
936
	}
937
	public static <T> List<T> queryObjects(Connection con, String sql, Class<T> clazz) throws SQLException {
938
		PreparedStatement ps = con.prepareCall(sql);
939
		try {
940
			List<T> rets = new ArrayList<T>();
941
			T ret = null;
942
			ResultSet rs = ps.executeQuery();
943
			try {
944
				while (rs.next()) {
945
					try {
946
						ResultSetMetaData rsmd = rs.getMetaData();
947
						Method[] methods = new Method[rsmd.getColumnCount() + 1];
948
						Method[] dms = clazz.getMethods();
949
						for (int i = 1; i <= methods.length; ++i) {
950
							String caption = lookupColumnName(rsmd, i);
951
							methods[i] = match(caption, dms);
952
						}
953
						ret = (T) clazz.newInstance();
954
						for(int i = 1 ;i < methods.length ; ++i){
955
							if(null!=methods[i]) methods[i].invoke(ret,rs.getObject(i));
956
						}
957
						rets.add(ret);
958
					} catch (Exception e) {
959
						throw new RuntimeException(e);
960
					}
961
				}
962
				return rets;
963
			} finally {
964
				close(rs);
965
			}
966
		} finally {
967
			close(ps);
968
		}
969
970
	}
971
	public static <T> T queryObject(Connection con, String sql, PreparedStatementConfig config,Class<T> clazz) throws SQLException {
972
		PreparedStatement ps = con.prepareCall(sql);
973
		try {
974
			config.config(ps);
975
			T ret = null;
976
			ResultSet rs = ps.executeQuery();
977
			try {
978
				if (rs.next()) {
979
					try {
980
						ResultSetMetaData rsmd = rs.getMetaData();
981
						Method[] methods = new Method[rsmd.getColumnCount() + 1];
982
						Method[] dms = clazz.getMethods();
983
						for (int i = 1; i <= methods.length; ++i) {
984
							String caption = lookupColumnName(rsmd, i);
985
							methods[i] = match(caption, dms);
986
						}
987
						ret = (T) clazz.newInstance();
988
						for(int i = 1 ;i < methods.length ; ++i){
989
							if(null!=methods[i]) methods[i].invoke(ret,rs.getObject(i));
990
						}
991
						return ret;
992
					} catch (Exception e) {
993
						throw new RuntimeException(e);
994
					}
995
				}
996
				return null;
997
998
			} finally {
999
				close(rs);
1000
			}
1001
		} finally {
1002
			close(ps);
1003
		}
1004
1005
	}
1006
	public static <T> List<T> queryObjects(Connection con, String sql,PreparedStatementConfig config,Class<T> clazz) throws SQLException {
1007
		PreparedStatement ps = con.prepareCall(sql);
1008
		try {
1009
			config.config(ps);
1010
			List<T> rets = new ArrayList<T>();
1011
			T ret = null;
1012
			ResultSet rs = ps.executeQuery();
1013
			try {
1014
				while (rs.next()) {
1015
					try {
1016
						ResultSetMetaData rsmd = rs.getMetaData();
1017
						Method[] methods = new Method[rsmd.getColumnCount() + 1];
1018
						Method[] dms = clazz.getMethods();
1019
						for (int i = 1; i <= methods.length; ++i) {
1020
							String caption = lookupColumnName(rsmd, i);
1021
							methods[i] = match(caption, dms);
1022
						}
1023
						ret = (T) clazz.newInstance();
1024
						for(int i = 1 ;i < methods.length ; ++i){
1025
							if(null!=methods[i]) methods[i].invoke(ret,rs.getObject(i));
1026
						}
1027
						rets.add(ret);
1028
					} catch (Exception e) {
1029
						throw new RuntimeException(e);
1030
					}
1031
				}
1032
				return rets;
1033
			} finally {
1034
				close(rs);
1035
			}
1036
		} finally {
1037
			close(ps);
1038
		}
1039
1040
	}
1041
1042
	public static Object getResultSetValue(ResultSet rs, int index) throws SQLException {
1043
		Object obj = rs.getObject(index);
1044
		String className = null;
1045
		if (obj != null) {
1046
			className = obj.getClass().getName();
1047
		}
1048
		if (obj instanceof Blob) {
1049
			obj = rs.getBytes(index);
1050
		} else if (obj instanceof Clob) {
1051
			obj = rs.getString(index);
1052
		} else if ("oracle.sql.TIMESTAMP".equals(className) || "oracle.sql.TIMESTAMPTZ".equals(className)) {
1053
			obj = rs.getTimestamp(index);
1054
		} else if (className != null && className.startsWith("oracle.sql.DATE")) {
1055
			String metaDataClassName = rs.getMetaData().getColumnClassName(index);
1056
			if ("java.sql.Timestamp".equals(metaDataClassName) || "oracle.sql.TIMESTAMP".equals(metaDataClassName)) {
1057
				obj = rs.getTimestamp(index);
1058
			} else {
1059
				obj = rs.getDate(index);
1060
			}
1061
		} else if (obj != null && obj instanceof java.sql.Date) {
1062
			if ("java.sql.Timestamp".equals(rs.getMetaData().getColumnClassName(index))) {
1063
				obj = rs.getTimestamp(index);
1064
			}
1065
		}
1066
		return obj;
1067
	}
1068
1069
	public static String lookupColumnName(ResultSetMetaData resultSetMetaData, int columnIndex) throws SQLException {
1070
		String name = resultSetMetaData.getColumnLabel(columnIndex);
1071
		if (name == null || name.length() < 1) {
1072
			name = resultSetMetaData.getColumnName(columnIndex);
1073
		}
1074
		return name;
1075
	}
1076
1077
	private static Method match(String mn, Method[] methods) {
1078
		if (mn.length() == 1)
1079
			mn = "set" + mn.toUpperCase(Locale.US);
1080
		else
1081
			mn = "set" + Character.toUpperCase(mn.charAt(0)) + mn.substring(1);
1082
		for (Method method : methods) {
1083
			if (method.getName().equals(mn) && method.getParameterTypes().length == 1
1084
					&& !Modifier.isStatic(method.getModifiers())) {
1085
				return method;
1086
			}
1087
		}
1088
		return null;
1089
	}
1090
1091
}

+ 8 - 0
jfwUtil/src/main/java/org/jfw/util/jdbc/PreparedStatementConfig.java

@ -0,0 +1,8 @@
1
package org.jfw.util.jdbc;
2
3
import java.sql.PreparedStatement;
4
import java.sql.SQLException;
5
6
public interface PreparedStatementConfig {
7
	void config(PreparedStatement ps) throws SQLException;
8
}

+ 8 - 0
jfwUtil/src/main/java/org/jfw/util/jdbc/ResultSetExtractor.java

@ -0,0 +1,8 @@
1
package org.jfw.util.jdbc;
2
3
import java.sql.ResultSet;
4
import java.sql.SQLException;
5
6
public interface ResultSetExtractor<T> {	
7
	T extractData(ResultSet rs) throws SQLException;
8
}