SpringBoot项目bug-Property ‘mapperLocations‘ was not specified(包文件名关联另一个包文件名)
控制台出现如下反馈:Logging initialized using 'class org.apache.ibatis.logging.stdout.StdOutImpl' adapter.Registered plugin: 'AbstractSqlParserHandler(sqlParserList=null, sqlParserFilter=null)'Property 'mapperL
控制台出现如下反馈:
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:\exer\mycode\guli-parent\service\service-ucenter\target\classes\com\atguigu\guli\service\ucenter\mapper\xml\MemberMapper.xml]'
其实就是mapper映射文件没有解析,打断点排查错误,最后打开mapper映射文件后发现地址不对,这个服务的路径前几天我们在写项目的时候明明路径是对的。也能运行,为什么几天后报错呢?
原因是edu和ucenter这两个微服务用代码生成器生成的,他们两个一旦第一次生成的时候包路径一致,idea会默认两个文件夹是一个目录。比如一个改名为edu,另一个包路径也改成edu。
解决方法就是两个服务选其中一个包文件名改了就行,改的时候会弹出两个修改选项,选靠右边的。然后运行项目的时候不要直接在service框运行,要在主启动类上运行
更多推荐
所有评论(0)