mybatis之配置sql语句输出

背景

目前spring boot项目一般通过mybatis管理数据库连接,在进行数据库mapper测试过程中,往往需要sql语句输出查看具体过程。记录一下配置日志输出。

配置方法

有两种方法进行配置:

  • 在spring的application.properties中进行配置:

    1
    mybatis.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl
  • mybatis-config.xml中进行配置:

    1
    <setting name="logImpl" value="STDOUT_LOGGING"/>