1、JSP/Servlet

1、web.xml中配置web应用的首页

    <!-- 配置web应用的首页列表-->
    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.htm</welcome-file>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
    <!--该配置文件指定了Web应用的首页依次顺序是 index.html、index.htm、index.jsp-->

 

上一篇:什么是html?


下一篇:Java 多线程爬虫及分布式爬虫架构