Springboot中在控制台输出SQL语句

实现方法:在配置文件中增加配置代码,

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

如下:

mybatis:
  mapper-locations: classpath:mapper/*.xml
  configuration:
    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl

 

你可能感兴趣的:(Springboot中在控制台输出SQL语句)