码迷,mamicode.com
首页 > 移动开发 > 详细

SpringBoot无法访问webapp目录下的文件

时间:2019-11-16 11:00:46      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:direct   app   uil   path   resource   sources   inf   lease   rect   

springboot version:2.1.9-RELEASE

 

解决方案:

  在pom中添加此段 完美解决,代码的作用是让src/main/webapp在编译的时候在resoureces路径下也生成webapp的文件

 

    <build>
        <resources>
            <resource>
                <directory>src/main/webapp</directory>
                <targetPath>META-INF/resources</targetPath>
                <includes>
                    <include>**/**</include>
                </includes>
            </resource>
        </resources>
    </build>

 

SpringBoot无法访问webapp目录下的文件

标签:direct   app   uil   path   resource   sources   inf   lease   rect   

原文地址:https://www.cnblogs.com/arebirth/p/springbootcantaccessstaticforwebapp.html

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