码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2019-02-20 17:14:55      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:rect   span   prope   directory   des   inf   技术   uil   nbsp   

技术图片

原因分析:绑定的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文件没有导入

标签:rect   span   prope   directory   des   inf   技术   uil   nbsp   

原文地址:https://www.cnblogs.com/116970u/p/10407633.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!