javacssspring-bootvisual-studio-code

css assets not loading in spring boot application running on vscode


I am currently running a simple spring boot project via vscode. Everything works well but my css and javascript assets won't load when i run it.

this is my current project structure enter image description here

and this is how I add the css for instance to the project:

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

Solution

  • this worked for me

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