Will the code below is correct to map the contents of css/images/js folders in spring mvc properly. I moved around my folders but couldnt find proper places for it.
web.xml
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>*.css</url-pattern>
</servlet-mapping>
I want my folders locate under WEB-INF so my spring-servlet.xml:
<mvc:resources location="/WEB-INF/" mapping="**"/>