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-->

猜你喜欢

转载自www.cnblogs.com/guyuangang/p/11737418.html
今日推荐