为什么http://localhost:8080/myhome/在不设定欢迎页面的时候,index.jsp就能访问,改个名字就不能了?

来源:1-7 WEB-INF目录详解

已寻不到清晨的清新

2018-04-06 12:10

为什么http://localhost:8080/myhome/在不设定欢迎页面的时候,index.jsp就能访问,改个名字就不能了?

写回答 关注

5回答

  • 艾米丽宏
    2018-05-31 21:05:26

    未做配置时,index.jsp为默认首页,改名后就不能找到,其他名需要配置web.xml

  • 忧伤的民工
    2018-05-17 12:51:02

    web.xml

  • 忧伤的民工
    2018-05-17 12:50:46

    <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 12:48:59

    xml配置

  • 已寻不到清晨的清新
    2018-04-06 12:13:19

    或者说哪个文件里的哪个代码把index.jsp设定为默认欢迎页面?

JAVA遇见HTML——JSP篇

Java Web入门级教程JSP,带你轻松的学习JSP基础知识

248278 学习 · 3071 问题

查看课程

相似问题