In Spring mvc how we can set a default jsp page i.e., as soon as we run the project on server a default jsp page should show up in the browser, just like in jsf we can achieve it using below code in web.xml :
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>