Search code examples
springspring-bootthymeleaf

image not displaying on Web page in Spring boot application


I use thymeleaf template engine and place the files like that. but images do not display on Web page. how can i fix it? place files like this result

<span class="Google">
    <a href="">
        <img src="img/google.png">
    </a>
</span>

<span class="kakao">
    <a href="">
        <img src="img/kakao.png">
    </a>
</span>

Solution

  • I may change the image reference to:

    <img th:src="@{/img/google.png}">
    

    It will add context-relative url to the image's uri.

    Here is the document.