為什么http://localhost:8080/myhome/在不設(shè)定歡迎頁(yè)面的時(shí)候,index.jsp就能訪問(wèn),改個(gè)名字就不能了?
為什么http://localhost:8080/myhome/在不設(shè)定歡迎頁(yè)面的時(shí)候,index.jsp就能訪問(wèn),改個(gè)名字就不能了?
為什么http://localhost:8080/myhome/在不設(shè)定歡迎頁(yè)面的時(shí)候,index.jsp就能訪問(wèn),改個(gè)名字就不能了?
2018-04-06
舉報(bào)
2018-05-31
未做配置時(shí),index.jsp為默認(rèn)首頁(yè),改名后就不能找到,其他名需要配置web.xml
2018-05-17
web.xml
2018-05-17
<welcome-file-list>
? ? ? ? <welcome-file>index.html</welcome-file>
? ? ? ? <welcome-file>index.htm</welcome-file>
? ? ? ? <welcome-file>index.jsp</welcome-file>
? ? </welcome-file-list>
2018-05-17
xml配置
2018-04-06
或者說(shuō)哪個(gè)文件里的哪個(gè)代碼把index.jsp設(shè)定為默認(rèn)歡迎頁(yè)面?