美文网首页JAVA
idea设置程序欢迎页

idea设置程序欢迎页

作者: 冰点雨 | 来源:发表于2017-03-02 09:56 被阅读61次

    在web.xml文件中:

      <welcome-file-list>
        <welcome-file>/app/project/userLogin.jsp</welcome-file>
        <welcome-file>/index.jsp</welcome-file>
      </welcome-file-list>
    

    其中/app/project/userLogin.jsp和/index.jsp是页面路径,这里可以设置多个页面,程序运行的时候会从第一个依次寻找,如果第一个存在就加载第一个页面为欢迎页,如果第一个不存在,就会依次寻找。

    相关文章

      网友评论

        本文标题:idea设置程序欢迎页

        本文链接:https://www.haomeiwen.com/subject/cwdhgttx.html