控制台出现如下反馈:
Logging initialized using 'class org.apache.ibatis.logging.stdout.StdOutImpl' adapter.
Registered plugin: 'AbstractSqlParserHandler(sqlParserList=null, sqlParserFilter=null)'
主要是这句:
Property 'mapperLocations' was not specified.
正确解析应该是这句:
Parsed mapper file: 'file [E:exermycodeguli-parentserviceservice-ucentertargetclassescomatguiguguliserviceucentermapperxmlMemberMapper.xml]'
其实就是mapper映射文件没有解析,打断点排查错误,最后打开mapper映射文件后发现地址不对,这个服务的路径前几天我们在写项目的时候明明路径是对的。也能运行,为什么几天后报错呢?
原因是edu和ucenter这两个微服务用代码生成器生成的,他们两个一旦第一次生成的时候包路径一致,idea会默认两个文件夹是一个目录。比如一个改名为edu,另一个包路径也改成edu。
解决方法就是两个服务选其中一个包文件名改了就行,但运行项目的时候不要直接在service框运行,要在主启动类上运行
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)