In my web.xml file, I have this
<welcome-file-list> <welcome-file>/index</welcome-file> </welcome-file-list>
What matches this
<servlet> <servlet-name>HomePageServlet</servlet-name> <servlet-class>com.gmustudent.HomePageServlet</servlet-class> </servlet> <servlet-mapping> <servlet-name>HomePageServlet</servlet-name> <url-pattern>/index</url-pattern> </servlet-mapping>
When I put this in the address bar, I get my homepage site, and the servlet captures all my content upon request.
http:
However it gives me 404
http:
Why doesn't my welcome file list capture this welcome file servlet when the index is not explicitly specified?
source share