项目启动发现启动不起来,反而控制台无限输出:Logging initialized using 'class org.apache.ibatis.logging.stdout.StdOutI
项目启动发现启动不起来,反而控制台无限输出:Logging initialized using 'class org.apache.ibatis.logging.stdout.StdOutImpl' adapter. ,这个错误只有在和Spring集成的情况下才会出现。 每次只要出现这个错误都意味着Mybatis的存放sql操作的XML出错了,但是具体是那个XML还没法直接确认,因为这里的日志看不出来任何有用的信息。
- 报错信息
Logging initialized using 'class org.apache.ibatis.logging.stdout.StdOutImpl' adapter. Registered plugin: 'com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor@3dd66ff5' Registered plugin: 'com.bzcst.bop.component.mybatis.config.MapperMethodInterceptor@24258b54' Parsed mapper file: 'file [D:\www\bop-charge\bop-charge-server\target\classes\com\bzcst\bop\charge\cal\mapper\xml\FeeCategoryMapper.xml]' Parsed mapper file: 'file [D:\www\bop-charge\bop-charge-server\target\classes\com\bzcst\bop\charge\cal\mapper\xml\FeeCategoryTemplateMapper.xml]' Parsed mapper file: 'file [D:\www\bop-charge\bop-charge-server\target\classes\com\bzcst\bop\charge\cal\mapper\xml\FeeProductMapper.xml]' Parsed mapper file: 'file [D:\www\bop-charge\bop-charge-server\target\classes\com\bzcst\bop\charge\cal\mapper\xml\FeeProductObjectMapper.xml]'
- 解决办法
解决办法就是定位问题,要知道是哪个mapper.xml文件出现错误了。我用到的就是注释!
一般每次开发要更改的xml不多,如果刚才还能启动正常,这回不行了,又没有更新代码,那就是自己的原因导致的。
就是刚才些的那些xml文件出现错误,就一个sql一个sql注释掉,或者几个sql一起注释掉,然后启动。直到启动正常,说明刚才注释的那部分代码就是错误的地方,然后逐步缩小范围。
- 一般出现这种错误的几种情况
- 对应的sql语句的id有重复
- 标签缺少,或者标签有问题
- 中英文切换导致有特殊字符