问答详情
源自:1-10 Eclipse开发Java Web程序

这是怎么回事?

为什么只能用index.jsp而改成index2。jsp就不行了?

提问者:qq_与赠_03193390 2017-09-20 23:21

个回答

  • 阡陌之上
    2017-09-21 09:41:57
    已采纳

    默认找不到index会出错

  • 慕姐4362573
    2017-09-21 09:48:22

    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>default.html</welcome-file>

        <welcome-file>default.htm</welcome-file>

        <welcome-file>default.jsp</welcome-file>

      </welcome-file-list>