javaweb主页设置

一 概念

二 原理

三 使用

1)设置网站页面资源存放的文件夹

需要在项目里面标注网页文件存放的文件夹,不然项目访问不到页面

2)主页设置

在web.xml文件中设置主页

    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>

3)主页存放的位置

不要放在web-INF下面,不然主页设置会失败

4)index.html和index.jsp

前者不需要再web.xml中配置主页,后者需要

发布了23 篇原创文章 · 获赞 3 · 访问量 4892

猜你喜欢

转载自blog.csdn.net/weixin_38615170/article/details/90406083