- 浏览: 427235 次
- 性别:
- 来自: 成都
最新评论
-
p6631034:
看看有木有用,翻译好不
Spring3.0 中文手册 -
malacca:
my249645546你好,我按照你写的教程操作完成了环境搭建 ...
使用Docker在本地搭建Hadoop分布式集群 -
fengzhongyusun:
刚接触,介绍详细,试下demo
memcached搭建缓存系统 -
小蔫嘟:
很棒的东西。
Jquery 将表单序列化为Json对象 -
e8sp:
...
Jquery 将表单序列化为Json对象
相关推荐
9. **<welcome-file-list>**:用于配置Web应用启动时的欢迎页面列表。 - `<welcome-file>`:欢迎页面的名称。 10. **<taglib>**:用于配置JSP标签库的信息。 - `<taglib-uri>`:标签库的URI。 - `<taglib-...
#### <welcome-file-list> - **作用**:定义当请求一个目录时,服务器应优先展示的文件列表。 - **示例**: ```xml <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.jsp</...
例如:<welcome-file-list><welcome-file>index.jsp</welcome-file><welcome-file>login.jsp</welcome-file></welcome-file-list> 2. 图标(Icon) icon 元素用于指定 gif 格式或 jpeg 格式的小图标(16*16)或大...
1. `<web-app>`:这是`Web.xml`的根元素,定义了整个Web应用的范围。它包含了一系列子元素,如Servlet、Servlet-Mapping、Filter、Filter-Mapping、Listener等。 2. `<servlet>`:用于定义一个Servlet,包括Servlet...
1. `<welcome-file-list>`元素:定义当用户访问目录而不是具体文件时要展示的默认页面。 ```xml <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> </...
</welcome-file-list> 在上面的配置中,定义了 Welcome 文件的列表,包括 index.html、index.htm 和 index.jsp。 二、server.xml 配置文件 server.xml 配置文件是 Tomcat 服务器的另一个重要配置文件,用于配置 ...
11. **`<welcome-file-list>`** - **作用**:指定当访问目录时浏览器显示的第一个文件。 - **示例**: ```xml <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> ``` 12. ...
<welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> ``` 访问目录时,服务器将自动尝试加载`index.jsp`。 8. **安全配置** `web.xml`还可以包含安全相关的配置,如定义角色、...
</welcome-file-list> ``` ### 8. `error-page`节点 当发生特定错误时,`error-page`可以指定一个页面来处理错误。 ```xml <error-page> <error-code>404</error-code> <location>/notfound.jsp</location> </...
`<welcome-file-list>`元素用于指定当客户端请求Web应用的上下文路径时,如果没有提供具体的资源路径,默认显示的页面列表。 **示例**: ```xml <welcome-file-list> <welcome-file>index.html</welcome-file> ...
`<welcome-file-list>`标签用于定义当客户端访问Web应用的上下文路径时,默认显示的欢迎页面列表。例如: ```xml <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</...
- 在 `web.xml` 中可以通过 `<welcome-file-list>` 元素来指定一系列欢迎页。 - 当用户访问应用根目录时,服务器会自动寻找这些欢迎页,并按照顺序返回第一个存在的页面。 - 示例代码: ```xml <welcome-file-...
<description>This is a simple web application for demonstration purposes.</description> ``` ##### 2.4 `<context-param>` - **定义**:配置上下文参数,这些参数可以在整个Web应用范围内访问。 - **用途**...
</welcome-file-list> ``` **10. error-page** ```xml <error-page> <error-code>404</error-code> <location>/notFound.jsp</location> </error-page> ``` **11. taglib** ```xml <taglib> <taglib-uri>/...
`web.xml`文件可以通过`<welcome-file-list>`元素来指定一组欢迎页面,服务器会按照列表中页面的顺序尝试加载它们。示例代码如下: ```xml <welcome-file-list> <welcome-file>index.jsp</welcome-file> ...
`<welcome-file-list>`定义了Web应用的欢迎页面列表,当用户访问Web应用的上下文路径但没有指定具体资源时,容器会尝试依次加载列表中的页面。 ```xml <welcome-file-list> <welcome-file>index.jsp</welcome-file...
</welcome-file-list> ``` 12. **`mime-mapping`元素** - 设置MIME类型映射。 ```xml <mime-mapping> <extension>jpg</extension> <mime-type>image/jpeg</mime-type> </mime-mapping> ``` #### 四、其他...
通过`<welcome-file-list>`元素可以指定当访问目录而非具体资源时,服务器应显示的默认页面。例如: ```xml <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.jsp</welcome-...