C/C++教程

Property ‘mapperLocations‘ was specified but matching resources are not found.

本文主要是介绍Property ‘mapperLocations‘ was specified but matching resources are not found.,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

在pom中加入

<build>
    <resources>
        <resource>
            <directory>src/main/resources</directory>
            <includes>
                <include>**/*.properties</include>
                <include>**/*.xml</include>
            </includes>
            <filtering>true</filtering>
        </resource>
        <resource>
            <directory>src/main/java</directory>
            <includes>
        <include>**/*.properties</include>
        <include>**/*.xml</include>
    </includes>
        <filtering>true</filtering>
        </resource>
    </resources>
</build>

这篇关于Property ‘mapperLocations‘ was specified but matching resources are not found.的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!