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

Posted Arebirth

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot无法访问webapp目录下的文件相关的知识,希望对你有一定的参考价值。

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目录下的文件的主要内容,如果未能解决你的问题,请参考以下文章

IDEA Springboot webapp下资源无法访问

IDEA访问不到SpringBoot项目webapp下的内容

springboot打包后静态资源webapp文件夹无法打包进去

springboot静态资源访问

SpringBoot静态资源访问

WEB开发----springboot的登录拦截机制