Servlet设置访问网站的默认页面

版权声明:《==study hard and make progress every day==》 https://blog.csdn.net/qq_38225558/article/details/82959778

在我们主配置文件web.xml中有默认页面的配置

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

但一般不建议在主配置文件中进行修改,ex:idea中可在软件中配置默认启动页面...

猜你喜欢

转载自blog.csdn.net/qq_38225558/article/details/82959778