课程
/后端开发
/Java
/JAVA遇见HTML——JSP篇
为什么http://localhost:8080/myhome/在不设定欢迎页面的时候,index.jsp就能访问,改个名字就不能了?
2018-04-06
源自:JAVA遇见HTML——JSP篇 1-7
正在回答
未做配置时,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 Web入门级教程JSP,带你轻松的学习JSP基础知识
3 回答http://localhost:8080/myhome/index.jsp报错
6 回答为什么可以访问http://localhost:8080/myhome/haha.jsp,但访问http://localhost:8080/myhome/报404异常呢
1 回答按照视频讲解的方法,无法访问index.jsp http://localhost:8080/myhome/index.jsp
3 回答输入 http://localhost:8080/myhome/index.jsp后出现错误
2 回答访问localhost:8080/myhome/index.jsp时,报404(the requested resource is not available.)