Springboot访问webapp下的文件
问题:springboot项目,有html的静态文件,启动springboot项目后访问不了静态文件。分析:编译的时候没有把静态文件编译进target/classes下。问题解决:pom文件下build节点下添加resources节点。重新编译,发现静态文件编译到了classes下,访问成功。
·
问题:springboot项目,有html的静态文件,启动springboot项目后访问不了静态文件。
分析:编译的时候没有把静态文件编译进target/classes下。
问题解决:pom文件下build节点下添加resources节点
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.1.0.RELEASE</version>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/webapp</directory>
<targetPath>META-INF/resources</targetPath>
<includes>
<include>**/**</include>
</includes>
</resource>
</resources>
</build>
重新编译,发现静态文件编译到了classes下,访问成功。
更多推荐
已为社区贡献3条内容
所有评论(0)