SpringBoot项目控制台打印sql设置

Posted 程序员张3

tags:

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

application-xx.yml文件中添加

# 打印sql
logging:
  level:
     com.xxxxxxxx.demo.mapper: debug

yml的mybatis的sql查看;Mybatis+Springboot 控制台查看日志,Mybatis结合springboot打印日志

1.配置如图

文件为yml

1 mybatis:
2   mapper-locations: classpath:com/springboot/transaction/mapper/*.xml
3   configuration:
4     log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
View Code

打印效果:

 

以上是关于SpringBoot项目控制台打印sql设置的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot JPA打印JPA执行的SQL语句与参数Springboot JPA日志输出打印SQL语句和传入的参数 高阶篇

(SpringBoot)如何在控制台打印sql?

yml的mybatis的sql查看;Mybatis+Springboot 控制台查看日志,Mybatis结合springboot打印日志

将mapper.xml中执行的sql打印到控制台上

SpringBoot中Mybatis打印sql日志

SpringBoot中Mybatis打印sql日志