初始安裝Tomcat,訪問時首頁爲默認的Tomcat首頁信息,如今想要將首頁設置成本身的項目頁面。html
修改Tomcat家目錄下的conf中的server.xml文件web
在<host></host>中添加選項,設置context:app
<Host>webapp
......jsp
<Context><Context docBase="<項目名稱>" path="" reloadable="true" ></Context>server
......xml
</Host>htm
保存退出配置
其中的docBase="<項目名稱>"選項,填寫你的在webapps下的項目名稱,path爲設置首頁,若是須要IP+路徑訪問項目,將path設置爲path=「/<項目名稱>」,若是將此項目設置爲首頁,則將此值設置爲空。file
而後修改統計目錄下的web.xml配置文件中的選項:
<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-list> 及<welcome-file>index.html</welcome-file>中間添加
<welcome-file><首頁配置文件></welcome-file>,如本身項目首頁爲aaa.jsp則整個配置爲:
<welcome-file-list>
<welcome-file>aaa.jsp</welcome-file>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
保存退出
aaa.jsp配置文件爲項目中的配置文件,即webapps下項目目錄下的首頁配置文件名稱。
在Web.xml文件當中有指定,會按照順序去尋找aaa開頭的文件
而後開啓Tomcat訪問首頁,首頁變成項目首頁。
在Tomcat/webapps目錄下有個ROOT目錄,此目錄存放Tomcat的基本配置信息,在開啓Tomcat以後,若沒有指定訪問首頁,則默認初始訪問首頁是訪問的此目錄下的項目,若訪問首頁設置爲指定目錄下的首頁,則會變成指定的項目首頁。