SpringMVC隨筆記錄
阿新 • • 發佈:2017-08-30
bug port 默認 web.xml web 註意 gmv ppi cnblogs
在web.xml裏可以配置webapp的默認首頁,格式如下:
<welcome-file-list> <welcome-file>index.html</welcome-file> </welcome-file-list>
這裏要註意,如果首頁是放在webapp根目錄下的index.jsp則不用配置<welcome-file>默認通過http://ip:port/webapp/訪問的就是index.jsp文件,
但是如果是index.html是主頁則首先要在springmvc.xml裏配置
<mvc:resources mapping="/index.html" location="/index.html"/>
因為.html是靜態文件會被springMVC攔截,之後還要在web.xml裏配置為上面的<welcome-file>..,且index.html前面不能有/,否則
只能通過http://ip:port/webapp/index.html訪問index.html頁面(不過第一次由IDE彈出的頁面這種http://ip:port/webapp/形式可以顯示index.html,但是刷新後就沒了),
而不能通過http://ip:port/webapp/訪問index.html頁面,即下面的配置某種意義上說是錯誤的(不過我覺得這該叫bug吧):
<welcome-file-list> <welcome-file>/index.html</welcome-file> </welcome-file-list>
SpringMVC隨筆記錄