已寻不到清晨的清新
2018-04-06 12:10
为什么http://localhost:8080/myhome/在不设定欢迎页面的时候,index.jsp就能访问,改个名字就不能了?
未做配置时,index.jsp为默认首页,改名后就不能找到,其他名需要配置web.xml
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>
xml配置
或者说哪个文件里的哪个代码把index.jsp设定为默认欢迎页面?
JAVA遇见HTML——JSP篇
248278 学习 · 3071 问题
相似问题