springboot 配置mybatis打印sql
Posted king西阳
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot 配置mybatis打印sql相关的知识,希望对你有一定的参考价值。
方式 一:
########################################################
###配置打印sql
########################################################
logging:
level:
com.threefivework.mymall.dao.mapper: DEBUG //包路径为mapper文件包路径
方式二:
在application.yml(.properties)中增加配置,在控制台打印sql:
mybatis
configuration:
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
参考类:org.apache.ibatis.session.Configuration
log-impl指定的值为org.apache.ibatis.logging.Log接口的某个实现类
以上是关于springboot 配置mybatis打印sql的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot MyBatis yml配置,打印sql语句,Mybatis字段值为空时该字段不返回。
SpringBoot MyBatis yml配置,打印sql语句,Mybatis字段值为空时该字段不返回。