Static Content Is Not Getting Loaded In Spring Mvc Resource Tag
I am using mvc:resources to access my static content . I am using in a proper way and having proper project structure still not able to access the static content.I am new in spring
Solution 1:
It looks like there are two resources
folders in your project structure. Make sure you are putting your resources in the right folder (the direct child of main
folder). There is no need to add /resources/
to the path as well, since it is already mapped by your mvc:resources
mapping.
Post a Comment for "Static Content Is Not Getting Loaded In Spring Mvc Resource Tag"