无法将类路径资源[public]解析为URL,因为它不存在(SPARK)

时间:2019-11-28 12:08:00

标签: java html server resources spark-java

在Spark中运行服务器时出现以下错误:

enter image description here

我的主像是这样:

enter image description here

这是我的项目结构

enter image description here

我将其添加到了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”

1 个答案:

答案 0 :(得分:0)

重新启动IntellIJ,并再次部署服务器后解决。