美文网首页初见
[java]maven编译没有mapper.xml

[java]maven编译没有mapper.xml

作者: 小贾同学coding | 来源:发表于2020-04-02 01:46 被阅读0次

springboot的maven插件请指定资源路径!!!

<build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
        <resources>
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.xml</include>
                </includes>
            </resource>
            <resource>
                <directory>src/main/resources</directory>
            </resource>
        </resources>
    </build>

相关文章

网友评论

    本文标题:[java]maven编译没有mapper.xml

    本文链接:https://www.haomeiwen.com/subject/nxhtphtx.html