`
yjshengshe
  • 浏览: 204642 次
  • 性别: Icon_minigender_1
  • 来自: 南京
社区版块
存档分类
最新评论

关于web.xml中的<welcome-file-list>

阅读更多
问题:
<welcome-file-list>中的<welcome-file>标签部分除了放具体的jsp或html页面(例如下)
  <welcome-file-list>
  <welcome-file>index.jsp</welcome-file>
  <welcome-file>index.html</welcome-file>
  </welcome-file-list>
外能不能放一个请求在里面?(例如下)
  <welcome-file-list>
  <welcome-file>index.do</welcome-file>
  </welcome-file-list>

我用spring MVC,按照以下配置
  <welcome-file-list>
  <welcome-file>index.do</welcome-file>
  </welcome-file-list>
启动服务器,终是报404错误,但我在地址栏手工加入index.do时,页面正常显示,这是为什么,是不是服务器不支持这样的写法(index.do)????如果支持应该如何写????

回答:

支持...不过tomcat 会去检查有没有index.do这个文件.

意思大概就是这样,首先读取 welcome list,然后取得第一个index,然后到web中的路径中查找有没有这个文件,没有继续第二个.
然后继续下去没有,就提示没有主页.

解决办法:
在你的WebRoot 下添加一个空白的文件命名为 index.do
分享到:
评论

相关推荐

    web.xml文件中各个标签的介绍

    例如:&lt;welcome-file-list&gt;&lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt;&lt;welcome-file&gt;login.jsp&lt;/welcome-file&gt;&lt;/welcome-file-list&gt; 2. 图标(Icon) icon 元素用于指定 gif 格式或 jpeg 格式的小图标(16*16)或大...

    web.xml详解(web-app_2_3.dtd)

    ELEMENT welcome-file-list (welcome-file+)&gt; &lt;!ELEMENT welcome-file (#PCDATA)&gt; ``` 示例: ```xml &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;welcome-file&gt;default.html&lt;/welcome-file&gt; ...

    web.xml详细说明

    11. **`&lt;welcome-file-list&gt;`** - **作用**:指定当访问目录时浏览器显示的第一个文件。 - **示例**: ```xml &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; ``` 12. ...

    web.xml配置文件详解

    &lt;description&gt;A simple Java web application.&lt;/description&gt; &lt;!-- 配置环境参数 --&gt; &lt;context-param&gt; &lt;param-name&gt;db.url&lt;/param-name&gt; &lt;param-value&gt;jdbc:mysql://localhost:3306/mydb&lt;/param-value&gt; &lt;/...

    Web.xml常用元素

    #### &lt;welcome-file-list&gt; - **作用**:定义当请求一个目录时,服务器应优先展示的文件列表。 - **示例**: ```xml &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.html&lt;/welcome-file&gt; &lt;welcome-file&gt;index.jsp&lt;/...

    web.xml 详解

    `&lt;welcome-file-list&gt;`元素用于指定当客户端请求Web应用的上下文路径时,如果没有提供具体的资源路径,默认显示的页面列表。 **示例**: ```xml &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.html&lt;/welcome-file&gt; ...

    web.xml配置详细说明.txt

    1. `&lt;welcome-file-list&gt;`元素:定义当用户访问目录而不是具体文件时要展示的默认页面。 ```xml &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.html&lt;/welcome-file&gt; &lt;welcome-file&gt;index.htm&lt;/welcome-file&gt; &lt;/...

    Jboss启动报Failed to parse WEB-INFweb.xml; - nested throwable错误

    在本例中,我们需要将错误的&lt;servlet&gt;标签改为&lt;welcome-file-list&gt;标签,正确的配置如下: ``` &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; ``` 其他可能的解决方案 除了...

    java/jsp web.xml详解

    &lt;/welcome-file-list&gt; ``` 访问目录时,服务器将自动尝试加载`index.jsp`。 8. **安全配置** `web.xml`还可以包含安全相关的配置,如定义角色、授权限制和SSL配置。 通过理解并熟练掌握`web.xml`的这些配置,...

    J2EE中关于web.xml文件的配置[文].pdf

    12. **&lt;welcome-file-list&gt;**: 当用户访问目录而不是具体文件时,服务器将使用欢迎文件列表中的文件作为默认响应。 13. **&lt;error-page&gt;**: 配置错误页面,当特定的HTTP状态码或异常发生时,服务器将重定向到指定的...

    Web.xml配置文件.pdf

    3. `&lt;welcome-file-list&gt;`:设置默认首页,当用户访问目录而不是具体文件时,Servlet容器会尝试加载这些文件。例如: ```xml &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.html&lt;/welcome-file&gt; &lt;welcome-file&gt;index...

    tomcat配置文件web.xml与server.xml解析

    &lt;/welcome-file-list&gt; 在上面的配置中,定义了 Welcome 文件的列表,包括 index.html、index.htm 和 index.jsp。 二、server.xml 配置文件 server.xml 配置文件是 Tomcat 服务器的另一个重要配置文件,用于配置 ...

    web.xml 2.4详细说明

    &lt;/welcome-file-list&gt; ``` ### 8. `error-page`节点 当发生特定错误时,`error-page`可以指定一个页面来处理错误。 ```xml &lt;error-page&gt; &lt;error-code&gt;404&lt;/error-code&gt; &lt;location&gt;/notfound.jsp&lt;/location&gt; &lt;/...

    J2EE中关于web.xml文件的配置

    "J2EE 中关于 web.xml 文件的配置" 在 J2EE 中,web.xml 文件扮演着非常重要的角色,它是一个基于 XML 的配置文件,用于描述 Web 应用的各个方面的配置信息。通过 web.xml 文件,我们可以对 Web 应用进行配置,例如...

    部署描述文件web.xml配置详解.doc

    &lt;/welcome-file-list&gt; ``` 12. **`mime-mapping`元素** - 设置MIME类型映射。 ```xml &lt;mime-mapping&gt; &lt;extension&gt;jpg&lt;/extension&gt; &lt;mime-type&gt;image/jpeg&lt;/mime-type&gt; &lt;/mime-mapping&gt; ``` #### 四、其他...

    web.xml详解(txt)

    &lt;description&gt;This is a simple web application for demonstration purposes.&lt;/description&gt; ``` ##### 2.4 `&lt;context-param&gt;` - **定义**:配置上下文参数,这些参数可以在整个Web应用范围内访问。 - **用途**...

    Tomcat web.xml,server.xml中详细配置说明文档

    &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.html&lt;/welcome-file&gt; &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; ``` 当访问目录而非具体文件时,Tomcat将尝试这些文件。 **配置异常页面(3.2.5)*...

    java web web.xml

    `&lt;welcome-file-list&gt;`定义了Web应用的欢迎页面列表,当用户访问Web应用的上下文路径但没有指定具体资源时,容器会尝试依次加载列表中的页面。 ```xml &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.jsp&lt;/welcome-file...

Global site tag (gtag.js) - Google Analytics