Our web app contains both index.html and index.jsp, and we use Apache Tomcat 6. When a request having the path till the context (for eg.,http://localhost:8080/mysite) comes to the tomcat which one will be served ?
Is this index.html or index.jsp ?
Is it configurable ?
index.htmlwill be given preference, but you can change this underwelcome-file-listinweb.xml.In the event of a partial request, the above configuration will try
index.jsp, thenindex.html, and thenindex.htm.