The default page for a web app is generally controlled by the web.xml with a welcome file list.
Did you find the answer you are looking for? Spring handles pages a bit differently when using Spring MVC. You will see in the Controllers that there are request mappings or URLs that are handled by the controller, and then the view name is returned from the controller method and Spring will route to that view.
Thanks,
Jack