Do we need to add load on start up value for spring dispatcher servlet?
<servlet>
<servlet-name>mvc-dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup><!-- **THIS** -->
</servlet>
What is the consequences of not adding this?