I am trying to learn spring MVC framework. Dispatcher servlet is suppose to handle all the incoming requests and we achieve that with following configuration :
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
My question is how / is different from /*. When we return the view name, we usually prefix / before the view name like /WEB-INF, so will that request also go through DispatcherServlet. If not why?