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

当筵意气临九霄,星离雨散不终朝。这篇文章主要讲述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目录下的文件】 

    推荐阅读