要設置Tomcat默認訪問頁面,需要進行以下步驟:
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
在以上代碼段中,可以看到Tomcat默認的訪問頁面是以index.html、index.htm和index.jsp的順序進行查找并顯示。可以按照自己的需求進行修改順序或添加其他頁面。
保存web.xml文件,并重新啟動Tomcat服務器。
這樣設置后,當訪問Tomcat的根目錄時,就會自動根據設置的順序查找并顯示對應的默認頁面。