1. 程式人生 > >Servlet設定訪問網站的預設頁面

Servlet設定訪問網站的預設頁面

在我們主配置檔案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>

但一般不建議在主配置檔案中進行修改,ex:idea中可在軟體中配置預設啟動頁面...