Search code examples
javaspring-bootthymeleaf

Thymeleaf CSS isn't loading


I'm aware that problems like this were posted hundred of times. But i couldn't find similar things.

My web page based on thymeleaf doesn't load static contents. App is running on Spring Boot. It's something wrong with paths declared in html?

Below my resources paths:

-resources
--static
---css
---img 
---js 
---etc.

And a sample of head of the page :

<head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <link rel="icon"  th:href="@{/img/express-favicon.png}" type="image/x-icon" />
        <title>RedCaynne Re</title>
        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">

        <link  th:href="@{/vendors/material-icon/css/materialdesignicons.min.css}" rel="stylesheet">
        <link  th:href="@{/css/font-awesome.min.css}" rel="stylesheet">
        <link th:href="@{/vendors/linears-icon/style.css}" rel="stylesheet">
        <link  th:href="@{/css/bootstrap.min.css}" rel="stylesheet">

        <link  th:href="@{/vendors/revolution/css/settings.css}" rel="stylesheet">
        <link th:href="@{/vendors/revolution/css/layers.css}" rel="stylesheet">
        <link th:href="@{/vendors/revolution/css/navigation.css}" rel="stylesheet">

        <link th:href="@{/vendors/bootstrap-selector/bootstrap-select.css}" rel="stylesheet">
        <link th:href="@{/vendors/bootatrap-date-time/bootstrap-datetimepicker.min.css}" rel="stylesheet">
        <link th:href="@{/vendors/owl-carousel/assets/owl.carousel.css}" rel="stylesheet">

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

        <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
        <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
    </head> 

Solution

  • OP Code works fine.

    For code details refer to https://github.com/srikantha2/jm (this is forked from your OP code)

    enter image description here