mybatis 通过 * 打印完整的sql语句以及执行结果操作

作者:Gogym 时间:2023-07-06 04:26:42 

开发过程中,如果使用mybatis做为ORM框架,经常需要打印出完整的sql语句以及执行的结果做为参考。

虽然mybatis结合日志框架可以做到,但打印出来的通常都是sql和参数分开的。

有时我们需要调试这条sql的时候,就需要把参数填进去,这样未免有些浪费时间。

此时我们可以通过实现mybatis * 来做到打印带参数的完整的sql,以及结果通过json输出到控制台。

直接看代码和使用方法吧:

MyBatis * 打印不带问号的完整sql语句 *


import java.text.DateFormat;
import java.util.Date;
import java.util.List;
import java.util.Locale;
import java.util.Properties;
import java.util.regex.Matcher;

import org.apache.commons.collections.CollectionUtils;
import org.apache.ibatis.executor.Executor;
import org.apache.ibatis.mapping.BoundSql;
import org.apache.ibatis.mapping.MappedStatement;
import org.apache.ibatis.mapping.ParameterMapping;
import org.apache.ibatis.plugin.*;
import org.apache.ibatis.reflection.MetaObject;
import org.apache.ibatis.session.Configuration;
import org.apache.ibatis.session.ResultHandler;
import org.apache.ibatis.session.RowBounds;
import org.apache.ibatis.type.TypeHandlerRegistry;

/**
* MyBatis * 打印不带问号的完整sql语句
*
* @author gogym
* @version 2018年8月13日
* @see MybatisInterceptor
* @since
*/
@Intercepts({
@Signature(type = Executor.class, method = "update", args = {MappedStatement.class,
 Object.class}),
@Signature(type = Executor.class, method = "query", args = {MappedStatement.class,
 Object.class, RowBounds.class, ResultHandler.class})})
@SuppressWarnings({"unchecked", "rawtypes"})
public class MybatisInterceptor implements Interceptor
{
@Override
public Object intercept(Invocation invocation)
 throws Throwable
{
 try
 {
  // 获取xml中的一个select/update/insert/delete节点,是一条SQL语句
  MappedStatement mappedStatement = (MappedStatement)invocation.getArgs()[0];
  Object parameter = null;
  // 获取参数,if语句成立,表示sql语句有参数,参数格式是map形式
  if (invocation.getArgs().length > 1)
  {
   parameter = invocation.getArgs()[1];
   System.out.println("parameter = " + parameter);
  }
  String sqlId = mappedStatement.getId(); // 获取到节点的id,即sql语句的id
  System.out.println("sqlId = " + sqlId);
  BoundSql boundSql = mappedStatement.getBoundSql(parameter); // BoundSql就是封装myBatis最终产生的sql类
  Configuration configuration = mappedStatement.getConfiguration(); // 获取节点的配置
  String sql = getSql(configuration, boundSql, sqlId); // 获取到最终的sql语句
  System.out.println("sql = " + sql);
 }
 catch (Exception e)
 {
  e.printStackTrace();
 }
 // 执行完上面的任务后,不改变原有的sql执行过程
 return invocation.proceed();
}

// 封装了一下sql语句,使得结果返回完整xml路径下的sql语句节点id + sql语句
public static String getSql(Configuration configuration, BoundSql boundSql, String sqlId)
{
 String sql = showSql(configuration, boundSql);
 StringBuilder str = new StringBuilder(100);
 str.append(sqlId);
 str.append(":");
 str.append(sql);
 return str.toString();
}

// 如果参数是String,则添加单引号, 如果是日期,则转换为时间格式器并加单引号; 对参数是null和不是null的情况作了处理
private static String getParameterValue(Object obj)
{
 String value = null;
 if (obj instanceof String)
 {
  value = "'" + obj.toString() + "'";
 }
 else if (obj instanceof Date)
 {
  DateFormat formatter = DateFormat.getDateTimeInstance(DateFormat.DEFAULT,
   DateFormat.DEFAULT, Locale.CHINA);
  value = "'" + formatter.format(new Date()) + "'";
 }
 else
 {
  if (obj != null)
  {
   value = obj.toString();
  }
  else
  {
   value = "";
  }
 }
 return value;
}

// 进行?的替换
public static String showSql(Configuration configuration, BoundSql boundSql)
{
 // 获取参数
 Object parameterObject = boundSql.getParameterObject();
 List<ParameterMapping> parameterMappings = boundSql.getParameterMappings();
 // sql语句中多个空格都用一个空格代替
 String sql = boundSql.getSql().replaceAll("[\\s]+", " ");
 if (CollectionUtils.isNotEmpty(parameterMappings) && parameterObject != null)
 {
  // 获取类型处理器注册器,类型处理器的功能是进行java类型和数据库类型的转换
  TypeHandlerRegistry typeHandlerRegistry = configuration.getTypeHandlerRegistry();
  // 如果根据parameterObject.getClass()可以找到对应的类型,则替换
  if (typeHandlerRegistry.hasTypeHandler(parameterObject.getClass()))
  {
   sql = sql.replaceFirst("\\?",
    Matcher.quoteReplacement(getParameterValue(parameterObject)));
  }
  else
  {
   // MetaObject主要是封装了originalObject对象,提供了get和set的方法用于获取和设置originalObject的属性值,主要支持对JavaBean、Collection、Map三种类型对象的操作
   MetaObject metaObject = configuration.newMetaObject(parameterObject);
   for (ParameterMapping parameterMapping : parameterMappings)
   {
    String propertyName = parameterMapping.getProperty();
    if (metaObject.hasGetter(propertyName))
    {
     Object obj = metaObject.getValue(propertyName);
     sql = sql.replaceFirst("\\?",
      Matcher.quoteReplacement(getParameterValue(obj)));
    }
    else if (boundSql.hasAdditionalParameter(propertyName))
    {
     // 该分支是动态sql
     Object obj = boundSql.getAdditionalParameter(propertyName);
     sql = sql.replaceFirst("\\?",
      Matcher.quoteReplacement(getParameterValue(obj)));
    }
    else
    {
     // 打印出缺失,提醒该参数缺失并防止错位
     sql = sql.replaceFirst("\\?", "缺失");
    }
   }
  }
 }
 return sql;
}

@Override
public Object plugin(Object target)
{
 return Plugin.wrap(target, this);
}

@Override
public void setProperties(Properties properties)
{

}
}

打印结果 * :


import java.util.Properties;
import org.apache.ibatis.executor.Executor;
import org.apache.ibatis.mapping.MappedStatement;
import org.apache.ibatis.plugin.Interceptor;
import org.apache.ibatis.plugin.Intercepts;
import org.apache.ibatis.plugin.Invocation;
import org.apache.ibatis.plugin.Plugin;
import org.apache.ibatis.plugin.Signature;
import org.apache.ibatis.session.ResultHandler;
import org.apache.ibatis.session.RowBounds;
import com.poly.rbl.utils.FastJsonUtils;

/**
* 打印结果 * 〈功能详细描述〉
*
* @author gogym
* @version 2019年4月2日
* @see InterceptorForQry
* @since
*/
@Intercepts({@Signature(type = Executor.class, method = "query", args = {MappedStatement.class,
Object.class, RowBounds.class, ResultHandler.class})})
public class InterceptorForQry implements Interceptor
{

@SuppressWarnings({"rawtypes", "unchecked"})
public Object intercept(Invocation invocation)
 throws Throwable
{
 Object result = invocation.proceed(); // 执行请求方法,并将所得结果保存到result中
 String str = FastJsonUtils.toJSONString(result);
 System.out.println(str);
 return result;
}

public Object plugin(Object target)
{
 return Plugin.wrap(target, this);
}

public void setProperties(Properties arg0)
{}
}

用法直接配置在mybatis配置文件里面即可:


<plugins>
<!-- 启动SQL打印,带参数
  <plugin interceptor="com.poly.rbl.plugin.mybatis.MybatisInterceptor">
</plugin>

<plugin interceptor="com.poly.rbl.plugin.mybatis.InterceptorForQry">
</plugin>
</plugins>

来源:https://blog.csdn.net/KokJuis/article/details/88972320

标签:mybatis, , ,打印,sql
0
投稿

猜你喜欢

  • C#飞行棋小程序设计代码

    2021-10-06 23:45:25
  • SpringCloud Hystrix-Dashboard仪表盘的实现

    2023-03-16 18:38:03
  • Android Camera开发实现可复用的相机组件

    2023-04-08 20:34:56
  • springMVC如何将controller中Model数据传递到jsp页面

    2023-05-25 23:46:58
  • 使用Gradle做Java代码质量检查的方法示例

    2021-08-10 00:45:06
  • C#简单实现文件上传功能

    2022-10-03 17:29:41
  • Spring Cloud之服务监控turbine的示例

    2023-04-20 23:26:44
  • Android实用的代码片段 常用代码总结

    2022-02-02 20:29:53
  • C语言char s[]和char* s的区别

    2022-03-27 11:24:24
  • java Lock接口详解及实例代码

    2022-12-15 21:44:38
  • Android仿网易客户端顶部导航栏效果

    2022-08-20 08:03:00
  • SpringMVC如何用Post方式重定向

    2021-10-05 21:34:27
  • 完美解决idea创建文件时,文件不分级展示的情况

    2022-01-01 22:10:19
  • 完美解决c# distinct不好用的问题

    2023-02-13 11:22:53
  • springboot整合mybatisplus的方法详解

    2023-05-20 18:35:05
  • WinForm实现为TextBox设置水印文字功能

    2023-06-09 21:15:38
  • Android开发之搜索框SearchView用法示例

    2021-10-30 03:40:19
  • RocketMQ producer同步发送单向发送源码解析

    2022-11-20 01:55:55
  • C++ Cmake的构建静态库和动态库详解

    2023-06-28 08:28:15
  • Java date format时间格式化操作示例

    2021-10-28 19:12:24
  • asp之家 软件编程 m.aspxhome.com