SpringBoot中Mybatis打印sql(转)

Posted 六一儿童节

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot中Mybatis打印sql(转)相关的知识,希望对你有一定的参考价值。

原文地址:https://www.cnblogs.com/expiator/p/8664977.html

如果使用的是application.properties文件,加入如下配置:

logging.level.com.example.demo.dao=debug

logging.level.com,后面的路径指的是mybatis对应的方法接口所在的包。并不是mapper.xml所在的包。

如果使用的是application.xml文件,加入如下配置:

# 打印sql
logging:
  level:
     com.example.demo.dao : debug

 

以上是关于SpringBoot中Mybatis打印sql(转)的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot中Mybatis打印sql日志

SpringBoot中Mybatis打印sql日志

Java实战之路:SpringBoot项目中使用Mybatis打印Sql语句

SpringBoot中Mybatis打印sql

SpringBoot 中的 Mybatis 打印 执行过的SQL语句

Mybatis打印SQL