styles/style.css No mapping found for HTTP request
- by sonx
Hi, it seems my styles folder added under the web folder is not getting mapped by dispatcher servlet on my JSP's. I get
WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/onlinebasket/styles/style.css] in DispatcherServlet with name 'onlinebasket'
here's my dispatcher servlet
<servlet-mapping>
<servlet-name>onlinebasket</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
and i this is my CSS URL on JSP
<link rel="stylesheet" href="<c:url value="/styles/sytle.css"/>" type="text/css"/>
This folder is on the web folder.