解决Property ‘mapperLocations‘ was not specified or no matching resources found问题

问题描述

解决Property ‘mapperLocations‘ was not specified or no matching resources found问题
在编写mybatis映射文件时,将XML文件放到了包下,而不是resources文件夹下,maven在打包的时候,默认是不会把xml文件打包编译,因此需要手动在pom文件配置,让maven在编译时把xml文件也进行输出。

解决方案

在pom文件中加入以下代码

<!-- 项目打包时会将java目录中的*.xml文件也进行打包 -->
    <build>
        <resources>
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.xml</include>
                </includes>
                <filtering>false</filtering>
            </resource>
        </resources>
    </build>
上一篇:proxyHost should not be null when a proxy is specified


下一篇:Linux usb 6. HC/UDC 测试