springboot logback 调整 mybatis 日志级别无效

现象

在日志配置文件 logback-spring.xml 中,无论怎么修改级别,mybatis 的 sql 日志都会打印出来。

原因

在 application.yml 中配置了 mybatis 的自定义日志类,如下:

mybatis:
  configuration:
    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl

点进去查看源码,发现 debug 日志级别始终为 true,所以怎么配置都不生效


public boolean isDebugEnabled() {
    return true;
}

public boolean isTraceEnabled() {
    return true;
}

解决方法

屏蔽 application.yml 中配置的 mybatis 自定义日志类,然后在 logback-spring.xml 配置文件中,将 mapper(及 dao)包,配置为 info 级别。

    
    <logger name="com.xxx.xxx.mapper" level="INFO"/>

你可能感兴趣的:(Mybatis,Spring,Boot)