Search code examples
springjspspring-mvcresourcesdirectory

Images not found in Spring - can not find resources folder


I have the following folder structure. I added mvc annotation and resources path but when I try call the resources in home.jsp like <img src= "/resources/images/spitter_avatar.png" />, it can't find anything.

Folder structure:

enter image description here

Here is my code in my servlet-config.xml file for resources:

<mvc:annotation-driven/>
<mvc:resources mapping="/resources/**" location="/resources/" />

Solution

  • <img src= "resources/images/spitter_avatar.png" /> 
    

    try above remove "/" before resources