I am new to Spring Framework and I was wondering why every time we create a new Spring project and we set the dispatcher mapping as /
instead of the default *.htm
.
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
Thanks!