我的编程空间,编程开发者的网络收藏夹
学习永远不晚

mybatis输出SQL格式化的方法是什么

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

mybatis输出SQL格式化的方法是什么

这篇文章主要讲解了“mybatis输出SQL格式化的方法是什么”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“mybatis输出SQL格式化的方法是什么”吧!

mybatis输出SQL格式化

通过第三方日志工具可以控制日志级别的输出,但是我们发现mybatis输出的SQL不是那么的完整,我们SQL里的参数值并没有打印出来,下面我就来讲讲怎么样对mybatis的输出sql格式化。

首先我这个案例是基于Spring boot 来开发的,所以配置和传统的xml配置有所区别,spring boot大大简化了一些配置,它把配置放到java代码,我们只需要使用注解就可替代一些以前xml的配置。

自定义拦截器

import java.io.PrintStream;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.mapping.BoundSql;import org.apache.ibatis.mapping.MappedStatement;import org.apache.ibatis.mapping.ParameterMapping;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.reflection.MetaObject;import org.apache.ibatis.session.Configuration;import org.apache.ibatis.type.TypeHandlerRegistry;import org.springframework.stereotype.Component;@Intercepts({@org.apache.ibatis.plugin.Signature(type=org.apache.ibatis.executor.Executor.class, method="update", args={MappedStatement.class, Object.class}), @org.apache.ibatis.plugin.Signature(type=org.apache.ibatis.executor.Executor.class, method="query", args={MappedStatement.class, Object.class, org.apache.ibatis.session.RowBounds.class, org.apache.ibatis.session.ResultHandler.class})})@Componentpublic class MybatisResultInterceptor        implements Interceptor{    public Object intercept(Invocation invocation)            throws Throwable    {        try        {            MappedStatement mappedStatement = (MappedStatement)invocation.getArgs()[0];            Object parameter = null;            if (invocation.getArgs().length > 1) {                parameter = invocation.getArgs()[1];            }            String sqlId = mappedStatement.getId();            BoundSql boundSql = mappedStatement.getBoundSql(parameter);            Configuration configuration = mappedStatement.getConfiguration();            String sql = getSql(configuration, boundSql, sqlId);            System.out.println(sql);        }        catch (Exception localException) {}        return invocation.proceed();    }    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();    }    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(2, 2, 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();        String sql = boundSql.getSql().replaceAll("[\\s]+", " ");        MetaObject metaObject;        if ((CollectionUtils.isNotEmpty(parameterMappings)) && (parameterObject != null))        {            TypeHandlerRegistry typeHandlerRegistry = configuration.getTypeHandlerRegistry();            if (typeHandlerRegistry.hasTypeHandler(parameterObject.getClass()))            {                sql = sql.replaceFirst("\\?", Matcher.quoteReplacement(getParameterValue(parameterObject)));            }            else            {                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))                    {                        Object obj = boundSql.getAdditionalParameter(propertyName);                        sql = sql.replaceFirst("\\?", Matcher.quoteReplacement(getParameterValue(obj)));                    }                    else                    {                        sql = sql.replaceFirst("\\?", "缺失");                    }                }            }        }        return sql;    }    public Object plugin(Object target)    {        return Plugin.wrap(target, this);    }    public void setProperties(Properties properties) {}}

配置拦截器

import com.sengled.cloud.data.platform.dao.mybatis.MybatisResultInterceptor;import java.util.Properties;import javax.annotation.Resource;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;@Configurationpublic class MybatisInterceptorConfig{    @Resource    private MybatisResultInterceptor mybatisResultInterceptor;    @Bean    public String myInterceptor()    {        Properties properties = new Properties();        this.mybatisResultInterceptor.setProperties(properties);        return "interceptor";    }}

配置日志级别

 <logger name="com.apache.ibatis" level="TRACE"/> <logger name="java.sql.Connection" level="DEBUG"/> <logger name="java.sql.Statement" level="DEBUG"/> <logger name="java.sql.PreparedStatement" level="DEBUG"/> <root level="INFO">        <appender-ref ref="STDOUT" />        <appender-ref ref="FILE" /> </root>

mybatis sql语句格式化 trim prefix suffix

标题SQL语句格式化

  • trim标记:是格式化sql的标记

  • prefix:前缀

  • suffix:后缀

  • prefixOverrides:指定去除多余的前缀内容

  • suffixOverrides:指定去除多余的后缀内容

1. select语句

<select id="" parameterType="" resultType=""> select * from tb_user <trim perfis="WHERE" prefixOverrides = "AND | OR">  <if test="name != null"> AND name = #{name}</if>  <if test="gender != null"> AND gender= #{gender}</if> </trim></select>

执行结果为:

select * from tb_user where and name = #{name} andgender = #{gender}

2. insert语句

<insert id="" parameterType="">    insert into tb_user    <trim prefix="(" suffix=")" suffixOverrides=",">      <if test="id != null">        id,      </if>      <if test="name!= null">        name,      </if>      <if test="gender!= null">        gender,      </if>    </trim>    <trim prefix="values (" suffix=")" suffixOverrides=",">      <if test="id != null">        #{id,jdbcType=BIGINT},      </if>      <if test="name!= null">        #{name,jdbcType=VARCHAR},      </if>     <if test="gender!= null">        #{gender,jdbcType=BIGINT},      </if>    </trim>  </insert>

执行结果为:

insert into tb_user (id,name,gender) values(1,“张三”,20)

3.update语句

  <update id="">    update tb_user     <trim prefix="set" suffix=" where id = #{id}" suffixOverrides="," >     <if test="name != null"> name = #{name} , </if>     <if test="gender != null"> gender = #{gender} ,</if>    </trim>  </update>

执行结果为:

update tb_user set name = “张三”,gender = 30 where id = 1

感谢各位的阅读,以上就是“mybatis输出SQL格式化的方法是什么”的内容了,经过本文的学习后,相信大家对mybatis输出SQL格式化的方法是什么这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

mybatis输出SQL格式化的方法是什么

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

mybatis输出SQL格式化的方法是什么

这篇文章主要讲解了“mybatis输出SQL格式化的方法是什么”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“mybatis输出SQL格式化的方法是什么”吧!mybatis输出SQL格式化通过
2023-06-21

mysql格式化输出的方法是什么

在MySQL中,可以使用以下方法来格式化输出结果:使用 SELECT ... INTO OUTFILE 语句将查询结果导出到一个文件中,并在文件中进行格式化输出。例如:SELECT * INTO OUTFILE '/path/t
mysql格式化输出的方法是什么
2024-04-09

python格式化输出方法是什么

本篇内容介绍了“python格式化输出方法是什么”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!#初级版本的格式化输出name = input
2023-06-02

datagrip格式化sql的方法是什么

在DataGrip中,可以使用以下方法格式化SQL:选中要格式化的SQL代码,然后按下快捷键Ctrl + Alt + L(Windows)或Command + Option + L(Mac)来格式化选中的代码。在菜单栏中选择“Code” -
datagrip格式化sql的方法是什么
2024-04-15

c语言输出格式转换的方法是什么

在C语言中,输出格式转换主要通过格式化输出函数`printf()`来实现。`printf()`函数可以根据指定的格式将数据输出到屏幕上或者其他输出设备上。常见的格式转换符包括:`%d`:输出十进制整数。`%f`:输出浮点数。`%s`:
c语言输出格式转换的方法是什么
2023-10-28

Java格式化输出的方法有哪些

这篇文章主要讲解了“Java格式化输出的方法有哪些”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Java格式化输出的方法有哪些”吧!Java控制台输出1.使用System.out.write
2023-07-05

double型输出格式指的是什么

小编给大家分享一下double型输出格式指的是什么,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!double型常规输出为“%lf”,但是double类型在默认情况
2023-06-20

c语言输出空格的方法是什么

在C语言中,可以使用printf函数输出空格。要输出空格,只需在printf函数中使用空格字符即可。例如,要输出一个空格,可以使用以下语句:printf(" ");还可以在字符串中插入空格,例如:printf("Hello, World
c语言输出空格的方法是什么
2024-03-13

editplus2格式化json的方法是什么

EditPlus 2是一个文本编辑器,不提供JSON格式化的功能。要格式化JSON,您可以使用其他工具或在线服务,例如:1. Visual Studio Code:这是一个功能强大的源代码编辑器,提供了许多插件和扩展来帮助开发者工作,其中包
2023-09-01

Python字符串格式化输出方法分析

本文实例分析了Python字符串格式化输出方法。分享给大家供大家参考,具体如下: 我们格式化构建字符串可以有3种方法: 1 元组占位符m = 'python' astr = 'i love %s' % m print astr2 字符串的f
2022-06-04

Python 格式化输出字符串的方法(输出字符串+数字的几种方法)

字符串格式化输出是python非常重要的基础语法,这篇文章主要介绍了Python 格式化输出字符串(输出字符串+数字的几种方法)的方法,需要的朋友可以参考下
2023-03-02

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录