Search code examples
javacssspringspring-bootthymeleaf

Spring Boot Thymeleaf not recognizing CSS file


The problem is that a thymeleaf does not find my css file

Project structure enter image description here

I am able to access css file with given url http://localhost:8080/styles.css

I use spring boot 3.1.1

I have tried

and as well as

Template does show correctly but css is not applied


Solution

  • This is the correct syntax in your case:

    <link th:href="@{/styles.css}" rel="stylesheet" />