`
my249645546
  • 浏览: 427235 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

web.xml使用动态页面定义<welcome-file-list>

阅读更多
0
10
分享到:
评论

相关推荐

    web.xml配置文件详解

    9. **&lt;welcome-file-list&gt;**:用于配置Web应用启动时的欢迎页面列表。 - `&lt;welcome-file&gt;`:欢迎页面的名称。 10. **&lt;taglib&gt;**:用于配置JSP标签库的信息。 - `&lt;taglib-uri&gt;`:标签库的URI。 - `&lt;taglib-...

    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;&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配置文件.pdf

    1. `&lt;web-app&gt;`:这是`Web.xml`的根元素,定义了整个Web应用的范围。它包含了一系列子元素,如Servlet、Servlet-Mapping、Filter、Filter-Mapping、Listener等。 2. `&lt;servlet&gt;`:用于定义一个Servlet,包括Servlet...

    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;/...

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

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

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

    java/jsp web.xml详解

    &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; ``` 访问目录时,服务器将自动尝试加载`index.jsp`。 8. **安全配置** `web.xml`还可以包含安全相关的配置,如定义角色、...

    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;/...

    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文件详解

    `&lt;welcome-file-list&gt;`标签用于定义当客户端访问Web应用的上下文路径时,默认显示的欢迎页面列表。例如: ```xml &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.html&lt;/welcome-file&gt; &lt;welcome-file&gt;index.htm&lt;/...

    jsp web.xml文件的作用及基本配置.docx

    - 在 `web.xml` 中可以通过 `&lt;welcome-file-list&gt;` 元素来指定一系列欢迎页。 - 当用户访问应用根目录时,服务器会自动寻找这些欢迎页,并按照顺序返回第一个存在的页面。 - 示例代码: ```xml &lt;welcome-file-...

    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应用范围内访问。 - **用途**...

    Web.xml配置详解精华

    &lt;/welcome-file-list&gt; ``` **10. 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;/error-page&gt; ``` **11. taglib** ```xml &lt;taglib&gt; &lt;taglib-uri&gt;/...

    web.xml文件的作用

    `web.xml`文件可以通过`&lt;welcome-file-list&gt;`元素来指定一组欢迎页面,服务器会按照列表中页面的顺序尝试加载它们。示例代码如下: ```xml &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; ...

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

    部署描述文件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配置详解

    通过`&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;/welcome-...

Global site tag (gtag.js) - Google Analytics