sql日志打印--将mybatis日志转化成可执行的sql
简介
本文复制自 https://blog.csdn.net/qq_44927883/article/details/117750732
请关注原作者,对原作者收藏和点赞。下面是介绍
这个工具是将日志中的SQ转为可执行的SQL的网页工具,用浏览器打开即可,如下图
不过不支持转化成批量插入的sql(下面会继续介绍手写代码组装sql的方式)
源码
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script type="text/javascript">
function f(obj) {
var textVa = obj.value;
// 获取带问号的SQL语句
var statementStartIndex = textVa.indexOf('Preparing: ');
var statementEndIndex = textVa.length - 1;
for (var i = statementStartIndex; i < textVa.length; i++) {
if (textVa[i] == "\n") {
statementEndIndex = i;
break;
}
}
var statementStr = textVa.substring(statementStartIndex + "Preparing: ".length, statementEndIndex);
console.log(statementStr);
//获取参数
var parametersStartIndex = textVa.indexOf('Parameters: ');
var parametersEndIndex = textVa.length - 1;
for (var i = parametersStartIndex; i < textVa.length; i++) {
if (textVa[i] == "\n") {
parametersEndIndex = i;
break;
} else {
console.log(textVa[i]);
}
}
var parametersStr = textVa.substring(parametersStartIndex + "Parameters: ".length, parametersEndIndex);
parametersStr = parametersStr.split(",");
console.log(parametersStr);
for (var i = 0; i < parametersStr.length; i++) {
// 如果数据中带括号将使用其他逻辑
tempStr = parametersStr[i].substring(0, parametersStr[i].indexOf("("));
// 获取括号中内容
typeStr = parametersStr[i].substring(parametersStr[i].indexOf("(") + 1, parametersStr[i].indexOf(")"));
// 如果为字符类型
if (typeStr == "String" || typeStr == "Timestamp") {
statementStr = statementStr.replace("?", "'" + tempStr.trim() + "'");
} else {
// 数值类型
statementStr = statementStr.replace("?", tempStr.trim());
}
}
console.log(statementStr);
document.getElementById("d1").innerHTML = statementStr;
return textVa;
}
function copySQL() {
var SQL = document.getElementById("d1");
SQL.select(); // 选择对象
document.execCommand("Copy"); // 执行浏览器复制命令
var msg = document.getElementById("msg");
msg.innerHTML = "已复制到剪切板";
setTimeout(function () {
msg.innerHTML = "";
}, 3000);
}
function clearLog(obj) {
obj.select();
obj.value = "";
}
</script>
</head>
<body>
<h2><font color="#00bfff"> 输入Mybatis SQL日志:</font></h2>
<textarea id="sqlLog" rows="13" cols="140" style="font-size:20px"></textarea>
<div style="border:0px deepskyblue solid;width:1425px;height:50px;text-align:right">
<button style="color:mediumblue;width:100px;height:60px" type="button"
onclick="clearLog(document.getElementById('sqlLog'))">
清空
</button>
<button style="color:mediumblue;width:100px;height:60px" type="submit"
onclick="f(document.getElementById('sqlLog'))">
解析SQL
</button>
</div>
<h2><font color="#32cd32">解析为可执行SQL:</font></h2>
<textarea id="d1" rows="13" cols="140" style="font-size:20px"></textarea>
<div style="border:0px deepskyblue solid;width:1425px;height:50px;text-align:right">
<button style="color:mediumblue;width:100px;height:60px" type="button" onclick="copySQL()">复制SQL</button>
</div>
<div id="msg"
style="color:cornflowerblue;border:0px black solid;width:800px;height:20px;text-align:right;font-style: initial;font-size: large">
</div>
</body>
</html>
使用方法
1.复制源码,新建记事本,粘贴源码,将记事本重命名,改为xx.html格式。
2.复制Mybatis日志中的SQL日志,必须注意,日志必须包含Preparing:和Parameters:全部内容,而且日志换行格式要保留,不要复制成纯文本,直接ctrl+c即可,见效果图。
3.用本地浏览器打开HTML页面,打开页面后,粘贴到顶部文本框,点击解析SQL按钮。下方文本框会出现解析后的SQL。点击复制SQL,即可复制到剪切板。这时即可去数据执行了。
注:若出现参数无法自动填充,请查看SQL日志格式,是否是原格式,是否保留了原有的换行等。若不是,重新复制下日志即可。
结语
本文复制自:(116条消息) 免费非破解 Mybatis Log Plugin_好好敲代码的三好青年的博客-CSDN博客_mybatis log plugin。在此文基础上做了页面和功能优化。
本文复制自https://blog.csdn.net/qq_44927883/article/details/117750732
在IDEA中,有mybatis log plgn(收费) 或mybatis log(免费)等插件实现了此功能,大家在IDE中可以使用插件方式实现,在未启动IDEA时,可以通过网页方式解析SQL,两者可以互相补充。喜欢本文,请关注原作者,对原作者收藏和点赞。如果原作者介意请联系删除,谢谢
java代码组装批量插入sql
@Test
public void testAssembleInsertSqls() throws IOException {
QueryWrapper<CategoryEntity> categoryQueryWrapper = new QueryWrapper<>();
categoryQueryWrapper.last("limit 6");
List<CategoryEntity> listAll = categoryService.list(categoryQueryWrapper);
if (listAll.size() > 3) {
List<List<CategoryEntity>> partition = Lists.partition(listAll, 3);
for (List<CategoryEntity> entityList : partition) {
int totalSize = 0;
int size = entityList.size();
String formatStr = "('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s')";
StringBuilder sql = new StringBuilder("INSERT INTO `pms_category_copy1`(`name`, " +
"`parent_cid`, `cat_level`, `show_status`, `sort`, `icon`, `product_unit`, `product_count`) VALUES ");
for (int i = 0; i < size - 1; i++) {
CategoryEntity cate = entityList.get(i);
sql.append(String.format(formatStr, cate.getName(), cate.getParentCid(), cate.getCatLevel(),
cate.getShowStatus(), cate.getSort(), cate.getIcon(), "拼接sql", cate.getProductCount()));
sql.append(",");
}
// 最后一条拼接分号“;”
CategoryEntity lastCate = entityList.get(size - 1);
sql.append(String.format(formatStr, lastCate.getName(), lastCate.getParentCid(), lastCate.getCatLevel(),
lastCate.getShowStatus(), lastCate.getSort(), lastCate.getIcon(), "拼接sql", lastCate.getProductCount()));
sql.append(";");
sql.append("\r\n");
System.out.println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>");
System.out.println(sql);
System.out.println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>");
File file = new File("D:/批量插入语句.sql");
FileWriter fw = new FileWriter(file, true);
BufferedWriter bw = new BufferedWriter(fw);
bw.write(sql.toString());
bw.close();
fw.close();
}
}
}
mybatis-plus 开启sql打印三种方法
方法一:
mybatis-plus:
configuration:
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
这个打印出来的日志还是参数和预执行语句分开的(往语句中的“?”填参数)
方法二:
logging:
level:
com.chz.mapper: debug
打印结果同上
方法三:
配置类,官网已经弃用了插件,推荐使用P6spy
@Configuration
publicclassMybatisPlusConfig{
// 该插件 3.1.2 后版本废弃
@Bean
public PerformanceInterceptor performanceInterceptor(){
//启用性能分析插件
return new PerformanceInterceptor();
}
}
1、maven依赖
<dependency>
<groupId>p6spy</groupId>
<artifactId>p6spy</artifactId>
<version>3.9.1</version>
</dependency>
2、application.yml 配置:
spring:
datasource:
driver-class-name: com.p6spy.engine.spy.P6SpyDriver # 原来mysql的连接串不要用了
url: jdbc:p6spy:h2:mem:test
3、spy.properties 配置:
#3.2.1以上使用
modulelist=com.baomidou.mybatisplus.extension.p6spy.MybatisPlusLogFactory,com.p6spy.engine.outage.P6OutageFactory
#3.2.1以下使用或者不配置
#modulelist=com.p6spy.engine.logging.P6LogFactory,com.p6spy.engine.outage.P6OutageFactory
# 自定义日志打印
logMessageFormat=com.baomidou.mybatisplus.extension.p6spy.P6SpyLogger
#日志输出到控制台
appender=com.baomidou.mybatisplus.extension.p6spy.StdoutLogger
# 使用日志系统记录 sql
#appender=com.p6spy.engine.spy.appender.Slf4JLogger
# 设置 p6spy driver 代理
deregisterdrivers=true
# 取消JDBC URL前缀
useprefix=true
# 配置记录 Log 例外,可去掉的结果集有error,info,batch,debug,statement,commit,rollback,result,resultset.
excludecategories=info,debug,result,commit,resultset
# 日期格式
dateformat=yyyy-MM-dd HH:mm:ss
# 实际驱动可多个
#driverlist=org.h2.Driver
# 是否开启慢SQL记录
outagedetection=true
# 慢SQL记录标准 2 秒
outagedetectioninterval=2
注意!
- driver-class-name 为 p6spy 提供的驱动类
- url 前缀为 jdbc:p6spy 跟着冒号为对应数据库连接地址
- 打印出sql为null,在excludecategories增加commit
- 批量操作不打印sql,去除excludecategories中的batch
- 批量操作打印重复的问题请使用MybatisPlusLogFactory (3.2.1新增)
- 该插件有性能损耗,不建议生产环境使用。
参考原文:mybatis-plus 开启sql打印三种方案 - 知乎 (zhihu.com)
如果大家喜欢请关注原文作者: https://zhuanlan.zhihu.com/p/370464265