Currently, I am in the process of working on a web application using Spring. My goal is to set up a bootstrap test table for the application and apply different themes to it. However, I am facing an issue where Bootstrap seems to be missing. I'm unsure if this is due to me entering the wrong path or if it's a more complex setup problem.
The layout of my files is currently structured as follows:
https://i.sstatic.net/CF9UX.png
I have tried various approaches such as using the fully qualified name, starting from just the assets section, and experimenting with different '/' combinations, but so far, I haven't had any luck. I have looked through the Bootstrap documentation, but it doesn't provide much information for cases where CDN links are not used, which is not an option for me.
<link rel="stylesheet" type="text/css"
href="/Grief/src/main/resources/assets/bootstrap/css/bootstrap.min.css" />
<link href="/Grief/src/main/resources/assets/font/all.min.css" rel="stylesheet">
...
<script type="text/javascript"
src="/Grief/src/main/resources/assets/bootstrap/js/bootstrap.bundle.min.js" /></script>
and
<link rel="stylesheet" type="text/css"
href="/assets/bootstrap/css/bootstrap.min.css" />
<link href="/assets/font/all.min.css" rel="stylesheet">
...
<script type="text/javascript"
src="/assets/bootstrap/js/bootstrap.bundle.min.js" /></script>
Despite trying these and other methods, the table still does not display the desired Bootstrap style (as shown below).
https://i.sstatic.net/FN4US.png
=====The complete project layout=====
https://i.sstatic.net/XYjrK.png
Chrome's console window:
https://i.sstatic.net/0YN7z.png
Any assistance provided will be immensely helpful and appreciated.