Javaweb——web.xml中的welcome-file-list

Posted 江州益彤

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Javaweb——web.xml中的welcome-file-list相关的知识,希望对你有一定的参考价值。

welcome-file-list作用:当用户在地址栏中输入工程名称或者输入web容器url(如http://localhost:8080/)时直接跳转的页面.

 <!-- web欢迎页面文件 -->
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>

动态web工程

下面配置了web.xml

两种访问方式

以上是关于Javaweb——web.xml中的welcome-file-list的主要内容,如果未能解决你的问题,请参考以下文章

关于web.xml内,设置默认页面的问题

java web怎么把登录界面作为这个应用的默认页面

关于web.xml报错问题解决

关于web 工程内web.xml文件的解读

tomcat 需要访问默认主页 已设置了web.xml

web.xml中welcome-file-list的作用