I am having an issue with my index.html thymeleaf page not being able to find the CSS that I have referenced on the page.
<link href="../css/bootstrap.min.css" rel="stylesheet" th:href="@{/css/bootstrap.min.css}" type="text/css"/>
When I deploy the WAR file in Tomcat, it looks like this: https://i.sstatic.net/RmP1Q.png
The index.html file is located in the templates folder.
However, when checking the Chrome console, I see the following error:
GET http://localhost:8080/pocApp/css/bootstrap.min.css 404 (Not Found)
Even though I can access the index.html page without any issues, the thymeleaf servlet seems unable to locate the CSS file. I have tried moving the entire css directory to different locations within the directory structure such as WEB-INF and WEB-INF/classes, but with no success.