SpringBoot中Mybatis打印sql日志
Posted 会偷袭的猫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot中Mybatis打印sql日志相关的知识,希望对你有一定的参考价值。
application.yml中加上
# springBoot+Mybatis 控制台打印SQL语句 (方式一)
logging:
level:
com.zoctan.api.mapper : debug
# 配置slq打印日志 (方式二)
mybatis-plus:
configuration:
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
上面二选一就可以了。
效果:
以上是关于SpringBoot中Mybatis打印sql日志的主要内容,如果未能解决你的问题,请参考以下文章
yml的mybatis的sql查看;Mybatis+Springboot 控制台查看日志,Mybatis结合springboot打印日志
springboot整合mybatis将sql打印到日志(转)