1: 通常首頁設置
在web.xml文件中一般咱們設置一個站點的首頁多爲網站第一根目錄下的index.jsp或者index.htm之類,例如:
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
2: *.action 的首頁設置
首先設置web.xml默認首頁爲某action:
<welcome-file-list>
<welcome-file>index.action</welcome-file>
</welcome-file-list>
關鍵的地方: 須要在目錄下新建一個同名文件, 例如 index.action web
這樣才能生效,之前一直設置不成功,都用 jsp 二次跳轉的。