原因:java.io.FileNotFoundException:无法打开ServletContext资源[/WEB-INF/template/fragment.html]

问题描述 投票:0回答:1

我还没有创建fragment.html文件,但是当我在网络上构建并运行它时,出现错误 Caused by: java.io.FileNotFoundException: Could not open ServletContext resource [/WEB-INF/template/fragment.html]

我应该怎么做才能解决这个问题?

spring spring-mvc
1个回答
0
投票

不要将静态文件放入

/WEB-INF
,而是将静态 html 放入
src/main/resources/static

我假设您的 application.properties/yml 中没有设置任何内容。

© www.soinside.com 2019 - 2024. All rights reserved.