启动项目时,mapper.xml文件没有导入

Posted 清晨的第一抹阳光

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了启动项目时,mapper.xml文件没有导入相关的知识,希望对你有一定的参考价值。

原因分析:绑定的statement没有发现,原因是只有mapper接口的java文件,没有xml文件

解决方法:需要在pom文件中进行配置

 1     <!-- 如果不添加此节点mybatis的mapper.xml文件都会被漏掉。 -->
 2     <build>
 3         <resources>
 4             <resource>
 5                 <directory>src/main/java</directory>
 6                 <includes>
 7                     <include>**/*.properties</include>
 8                     <include>**/*.xml</include>
 9                 </includes>
10                 <filtering>false</filtering>
11             </resource>
12         </resources>
13     </build>

 

以上是关于启动项目时,mapper.xml文件没有导入的主要内容,如果未能解决你的问题,请参考以下文章

IDEA开发工具,tomcat环境下启动maven项目失败,无法找到mapper目录下的xml文件

热加载 MyBatis 中修改过的 Mapper.xml

记录idea maven项目打包部署web项目mapper扫描失败

springboot配置mapper扫描采坑

MyBatis的Mapper.xml文件中没有提示怎么办?

请教高手,使用IDEA做项目时mapper.xml中的sql语句问题提示:no data sources are configured ...