当前位置:   article > 正文

Mybatis打印SQL,MybatisLog插件不打印SQL。Property ‘configuration‘ 和‘configLocation‘ can`t specified together_修改mybatis的配置文件为stdout_logging 不打印sql

修改mybatis的配置文件为stdout_logging 不打印sql

1. Mybatis打印SQL,MybatisLog插件不打印SQL。

安装好了Mybatis的日志插件,但是发现完整的SQL日志并没有输出。
检查配置文件发现,少了配置。
在这里插入图片描述

mybatis.configuration.log-impl = org.apache.ibatis.logging.stdout.StdOutImpl
  • 1

2. IllegalStateException: Property ‘configuration’ and ‘configLocation’ can not specified with together

但是,今天发现加上这个配置之后,项目启动居然报错了。
IllegalStateException: Property 'configuration' and 'configLocation' can not specified with together
好吧这是说这两个配置不能一起在properties配置文件里啊。那只能写道mybatis-config.xml里面了。这里面原本就有Log4j的啊。改成STDOUT_LOGGING的。
在这里插入图片描述

<!--        <setting name="logImpl" value="LOG4J"/>-->
<setting name="logImpl" value="STDOUT_LOGGING"/><!-- 打印sql-->
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/148204
推荐阅读
相关标签
  

闽ICP备14008679号