码迷,mamicode.com
首页 > 编程语言 > 详细

解决idea spring boot项目中target中没有同步更新最新目录文件及资源

时间:2019-12-09 17:26:34      阅读:441      评论:0      收藏:0      [点我收藏+]

标签:onclick   resources   logs   地址   cli   info   目录文件   clip   必须   

技术图片

idea不像eclipse那样自动将新保存的文件或目录及其他资源更新到target目录中,必须在pom.xml中设置 

技术图片
<build>    
        <resources>
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.*</include>
                </includes>
            </resource>
            <resource>
                <directory>src/main/resources</directory>
                <includes>
                    <include>**/*.*</include>
                </includes>
            </resource>
        </resources>
</build>
技术图片

这样maven  clean 就可以了!

 

原文地址:https://www.cnblogs.com/caiba/p/8651791.html

解决idea spring boot项目中target中没有同步更新最新目录文件及资源

标签:onclick   resources   logs   地址   cli   info   目录文件   clip   必须   

原文地址:https://www.cnblogs.com/jpfss/p/12011878.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!