Tomcat的默认页是index.html,index.jsp,你可以将default.jsp改名为index.jsp,或者到server.xml下改设置

解决方案 »

  1.   

    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.htm</welcome-file>
        <welcome-file>index.jsp</welcome-file>
      </welcome-file-list>
    在conf目录下面的web.xml文件了,如果要加一个入default.jsp
    就在里面加一行
     <welcome-file-list>
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.htm</welcome-file>
        <welcome-file>index.jsp</welcome-file>
        <welcome-file>default.jsp</welcome-file>
      </welcome-file-list>
      

  2.   

    我的server.xml里面没有
    <welcome-file-list></welcome-file-list>标记:)
      

  3.   

    不是server.xml是web.xml,在里边的最下行怎么这么不仔细啊