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
package com.yanzuoguang.db.impl;
import com.yanzuoguang.db.DbPrintSql;
import com.yanzuoguang.util.helper.StringHelper;
import com.yanzuoguang.util.log.Log;
import org.springframework.stereotype.Component;
/**
* 打印Sql语句
*
* @author 颜佐光
*/
@Component
public class DbPrintSqlDefault implements DbPrintSql {
@Override
public void printSql(SqlInfo sqlInfo, long time, int row) {
String sql = getStringSql(sqlInfo.getSql(), sqlInfo.getParas());
// 打印SQL语句
String tag = String.format("%d row %d ms %s", row, time, sqlInfo.getSqlName());
Log.infoTag(sqlInfo.getTargetClass(), tag, sql);
}
/**
* 获取参数处理之后的SQL语句
*
* @param sql 带参数的SQL语句
* @param paras 参数
* @return 不带参数的SQL语句
*/
public static String getStringSql(String sql, Object... paras) {
StringBuilder sb = new StringBuilder();
// 进行SQL语句参数替换,后面增加一个空格,方便后续用正则表达式进行替换处理
String[] split = sql.split("\\?");
// 参数位置
int pos = 0;
// 循环获取参数
while (pos < split.length) {
// 获取位置信息
sb.append(split[pos]);
// 获取位置
if (pos == split.length - 1) {
break;
}
// 获取对象
Object item = paras.length > pos ? paras[pos] : null;
String str = StringHelper.toString(item);
String strTo = str;
if (str == null || item == null) {
strTo = "null";
} else if (item instanceof Number || item.getClass().isEnum() || item instanceof Boolean) {
// 不进行处理
} else {
strTo = "'" + str.replace("'", "''") + "'";
}
sb.append(strTo);
pos++;
}
return sb.toString();
}
}