SpringBoot中Mybatis打印sql日志2024-01-03 11:28:52application.yml中加上 # springBoot+Mybatis 控制台打印SQL语句 (方式一) logging: level: com.zoctan.api.mapper : debug # 配置slq打印日志 (方式二) mybatis-plus: configuration: log-impl: org.apache.ibatis.logging.stdout.StdOutImpl 上面二选一就可以了。 效果: 上一篇:Supervisor使用详解下一篇:Python-subprocess执行命令并将输出劫持实现实时记录到日志