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

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

在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”

java html server resources spark-java
1个回答
0
投票

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

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