设置Tomcat默认显示页面
在server.xml中,有一段如下:
……
<engine name="Catalina" defaultHost="localhost"> <host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true" xmlValidation="false" xmlNamespaceAware="false"> …… <host></engine>
<Context path="\UserManageDemo" docBase="D:\JavaStudy\UserManageDemo" debug="0" reloadable="true"/><!--<Context path="" docBase="D:\apache-tomcat-5.5.20\webapps\SSHExam" debug="0" reloadable="true"/>-->
<welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> </welcome-file-list>
<welcome-file>a.jsp</welcome-file>