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

人生处万类,知识最为贤。这篇文章主要讲述启动项目时,mapper.xml文件没有导入相关的知识,希望能为你提供帮助。

启动项目时,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文件没有导入】 

    推荐阅读