在Spark中运行服务器时出现以下错误:
我的主像是这样:
这是我的项目结构
我将其添加到了pom.xml文件中:
<resources>
<resource>
<filtering>false</filtering>
<directory>src/main/resources</directory>
</resource>
</resources>
在添加此行之前,我无法呈现index.html,因为它无法在resources文件夹中找到它,但是在将其添加到pom.xml之后,它找到了它并正确呈现了它。
服务器运行良好,但是我无法将静态文件的位置设置为资源内部的文件夹“ / public”,因此当我尝试从index.html加载“ favicon.png”时,它将尝试可以在“ /index/favicon.png”中找到它,但我想将其转到“ resources / public / favicon.png”
答案 0 :(得分:0)
重新启动IntellIJ,并再次部署服务器后解决。