MyBatis配置时报错:Type interface * is not known to the MapperRegistry 和 Could not find resource *

Posted The Gao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MyBatis配置时报错:Type interface * is not known to the MapperRegistry 和 Could not find resource *相关的知识,希望对你有一定的参考价值。

问题一:需要在mybatis的核心配置文件mybatis-config.xml中注册相应的xml配置文件。

解决方案:在mybatis-config.xml中注册相应的xml配置文件。

<mappers>
    <mapper resource="com/gzh/dao/UserMapper.xml"/>
</mappers>

问题二:maven 由于约定大于配置,导致我们写的除 resources 文件夹以外的配置文件无法被导出或者生效。

解决方案:在maven中复制粘贴以下语句,使得除 resources 文件夹以外的配置文件能够导出或者生效。

<!--在build中配置resources,来防止我们资源导出失败的问题-->
<build>
    <resources>
        <resource>
            <directory>src/main/resources</directory>
            <includes>
                <include>**/*.properties</include>
                <include>**/*.xml</include>
            </includes>
            <filtering>true</filtering>
        </resource>
        <!--将src/main/java目录下的properties文件和xml文件能够被过滤导出-->
        <resource>
            <directory>src/main/java</directory>
            <includes>
                <include>**/*.properties</include>
                <include>**/*.xml</include>
            </includes>
            <filtering>true</filtering>
        </resource>
    </resources>
</build>

以上是关于MyBatis配置时报错:Type interface * is not known to the MapperRegistry 和 Could not find resource *的主要内容,如果未能解决你的问题,请参考以下文章

mybatis批量插入insert时报错

mybatis-spring-boot-starter在maven包时报错

实践丨SpringBoot整合Mybatis-Plus项目存在Mapper时报错

实践丨SpringBoot整合Mybatis-Plus项目存在Mapper时报错

配置spring-web.xml文件时报错时

MyBatis(映射文件中使用foreach标签时报错,属性collection的问题)