Spring Boot无法在/ resources / static / images文件夹中找到图像

时间:2019-05-18 02:26:23

标签: java html spring spring-boot

我正在尝试像这样在html中加载图像

<body>
    <div class="container">
        <div class="row justify-content-center">
            <div class="col-md-4"><img class="img-fluid" src="../static/images/zep.png" /></div>
        </div>
        <div class="row justify-content-center">
            <div class="col-md-12 text-center"><h1>Coming Soon.</h1></div>
            <!-- <div class="col-md-12 text-center"><p>Subscribe to our newsletter and stay tuned</p></div> -->
        </div>
        <!-- <div class="col-md-12 text-center"><button class="btn btn-custom">Subscribe</button></div> -->
    </div>
</body>

这是我的文件夹结构 enter image description here

所以当我运行它时,我得到了

Failed to load resource: the server responded with a status of zep.png:1 404 ()

我在做什么错?任何帮助,将不胜感激。谢谢

1 个答案:

答案 0 :(得分:0)

您不应在static标记的img中包含src。放置在src/main/resources/static中的资源将从您的应用程序的根目录开始提供。这意味着将从src/main/resources/static/images/zep.png开始投放/images/zep.png